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

Diff for /src/usr.bin/ssh/auth2.c between version 1.75 and 1.76

version 1.75, 2001/12/09 18:45:56 version 1.76, 2001/12/18 10:05:15
Line 596 
Line 596 
         u_long linenum = 0;          u_long linenum = 0;
         struct stat st;          struct stat st;
         Key *found;          Key *found;
           char *fp;
   
         if (pw == NULL)          if (pw == NULL)
                 return 0;                  return 0;
Line 663 
Line 664 
                         found_key = 1;                          found_key = 1;
                         debug("matching key found: file %s, line %lu",                          debug("matching key found: file %s, line %lu",
                             file, linenum);                              file, linenum);
                           fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
                           verbose("Found matching %s key: %s",
                                key_type(found), fp);
                           xfree(fp);
                         break;                          break;
                 }                  }
         }          }

Legend:
Removed from v.1.75  
changed lines
  Added in v.1.76