[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.2 and 1.3

version 1.2, 1999/09/28 04:45:36 version 1.3, 1999/11/02 19:42:35
Line 37 
Line 37 
   
   /* Get the value of in binary */    /* Get the value of in binary */
   oi = BN_bn2bin(value, buf);    oi = BN_bn2bin(value, buf);
   assert(oi == bin_size);    if (oi != bin_size)
       fatal("buffer_put_bignum: BN_bn2bin() failed: oi %d != bin_size %d",
             oi, bin_size);
   
   /* Store the number of bits in the buffer in two bytes, msb first. */    /* Store the number of bits in the buffer in two bytes, msb first. */
   PUT_16BIT(msg, bits);    PUT_16BIT(msg, bits);

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3