[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.128.2.3 and 1.136.2.1

version 1.128.2.3, 2006/11/08 00:44:05 version 1.136.2.1, 2006/09/30 04:06:51
Line 215 
Line 215 
         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: "
                     "need %d have %d", bytes, buffer_len(b));                      "need %d have %d", bytes, buffer_len(b));
         if (BN_bin2bn(buffer_ptr(b), bytes, value) == NULL)          BN_bin2bn(buffer_ptr(b), bytes, value);
                 fatal("buffer_get_bignum_bits: BN_bin2bn failed");  
         buffer_consume(b, bytes);          buffer_consume(b, bytes);
 }  }
   

Legend:
Removed from v.1.128.2.3  
changed lines
  Added in v.1.136.2.1