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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.334 and 1.335

version 1.334, 2020/01/26 00:13:20 version 1.335, 2020/01/26 00:14:45
Line 2098 
Line 2098 
                         goto out;                          goto out;
                 }                  }
                 if ((r = sshkey_from_blob(blob, len, &key)) != 0) {                  if ((r = sshkey_from_blob(blob, len, &key)) != 0) {
                         error("%s: parse key: %s", __func__, ssh_err(r));                          do_log2(r == SSH_ERR_KEY_TYPE_UNKNOWN ?
                         goto out;                              SYSLOG_LEVEL_DEBUG1 : SYSLOG_LEVEL_ERROR,
                               "%s: parse key: %s", __func__, ssh_err(r));
                           continue;
                 }                  }
                 fp = sshkey_fingerprint(key, options.fingerprint_hash,                  fp = sshkey_fingerprint(key, options.fingerprint_hash,
                     SSH_FP_DEFAULT);                      SSH_FP_DEFAULT);

Legend:
Removed from v.1.334  
changed lines
  Added in v.1.335