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

Diff for /src/usr.bin/ssh/Attic/auth-rsa.c between version 1.89 and 1.90

version 1.89, 2014/12/21 22:27:56 version 1.90, 2015/01/28 22:36:00
Line 233 
Line 233 
                             "actual %d vs. announced %d.",                              "actual %d vs. announced %d.",
                             file, linenum, BN_num_bits(key->rsa->n), bits);                              file, linenum, BN_num_bits(key->rsa->n), bits);
   
                 fp = key_fingerprint(key, options.fingerprint_hash,                  if ((fp = sshkey_fingerprint(key, options.fingerprint_hash,
                     SSH_FP_DEFAULT);                      SSH_FP_DEFAULT)) == NULL)
                           continue;
                 debug("matching key found: file %s, line %lu %s %s",                  debug("matching key found: file %s, line %lu %s %s",
                     file, linenum, key_type(key), fp);                      file, linenum, key_type(key), fp);
                 free(fp);                  free(fp);

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90