[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.32.4.2 and 1.32.4.3

version 1.32.4.2, 2005/06/05 02:22:39 version 1.32.4.3, 2005/09/02 03:44:59
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.32.4.2  
changed lines
  Added in v.1.32.4.3