[BACK]Return to bufaux.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/bufaux.c between version 1.35 and 1.35.2.1

version 1.35, 2005/03/10 22:01:05 version 1.35.2.1, 2005/09/04 18:40:01
Line 154 
Line 154 
         buf[0] = 0x00;          buf[0] = 0x00;
         /* Get the value of in binary */          /* Get the value of in binary */
         oi = BN_bn2bin(value, buf+1);          oi = BN_bn2bin(value, buf+1);
         if (oi != bytes-1) {          if (oi < 0 || (u_int)oi != bytes - 1) {
                 error("buffer_put_bignum2_ret: BN_bn2bin() failed: "                  error("buffer_put_bignum2_ret: BN_bn2bin() failed: "
                     "oi %d != bin_size %d", oi, bytes);                      "oi %d != bin_size %d", oi, bytes);
                 xfree(buf);                  xfree(buf);

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.35.2.1