[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.355 and 1.356

version 1.355, 2020/10/29 02:47:23 version 1.356, 2020/12/20 23:36:51
Line 1970 
Line 1970 
                     ctx->ip_str ? ctx->ip_str : "(none)");                      ctx->ip_str ? ctx->ip_str : "(none)");
                 if ((r = hostkeys_foreach(options.user_hostfiles[i],                  if ((r = hostkeys_foreach(options.user_hostfiles[i],
                     hostkeys_check_old, ctx, ctx->host_str, ctx->ip_str,                      hostkeys_check_old, ctx, ctx->host_str, ctx->ip_str,
                     HKF_WANT_PARSE_KEY)) != 0) {                      HKF_WANT_PARSE_KEY, 0)) != 0) {
                         if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {                          if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {
                                 debug_f("hostkeys file %s does not exist",                                  debug_f("hostkeys file %s does not exist",
                                     options.user_hostfiles[i]);                                      options.user_hostfiles[i]);
Line 2284 
Line 2284 
                     ctx->ip_str ? ctx->ip_str : "(none)");                      ctx->ip_str ? ctx->ip_str : "(none)");
                 if ((r = hostkeys_foreach(options.user_hostfiles[i],                  if ((r = hostkeys_foreach(options.user_hostfiles[i],
                     hostkeys_find, ctx, ctx->host_str, ctx->ip_str,                      hostkeys_find, ctx, ctx->host_str, ctx->ip_str,
                     HKF_WANT_PARSE_KEY)) != 0) {                      HKF_WANT_PARSE_KEY, 0)) != 0) {
                         if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {                          if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {
                                 debug_f("hostkeys file %s does not exist",                                  debug_f("hostkeys file %s does not exist",
                                     options.user_hostfiles[i]);                                      options.user_hostfiles[i]);

Legend:
Removed from v.1.355  
changed lines
  Added in v.1.356