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

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.108 and 1.109

version 1.108, 2003/08/14 16:08:58 version 1.109, 2003/09/18 13:02:21
Line 187 
Line 187 
 static void  static void
 buffer_get_bignum_bits(Buffer *b, BIGNUM *value)  buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
 {  {
         int bits = buffer_get_int(b);          u_int bits = buffer_get_int(b);
         int bytes = (bits + 7) / 8;          u_int bytes = (bits + 7) / 8;
   
         if (buffer_len(b) < bytes)          if (buffer_len(b) < bytes)
                 fatal("buffer_get_bignum_bits: input buffer too small: "                  fatal("buffer_get_bignum_bits: input buffer too small: "

Legend:
Removed from v.1.108  
changed lines
  Added in v.1.109