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

Diff for /src/usr.bin/ssh/readconf.c between version 1.324 and 1.325

version 1.324, 2020/01/30 22:19:32 version 1.325, 2020/02/03 23:47:57
Line 2094 
Line 2094 
                 options->system_hostfiles[options->num_system_hostfiles++] =                  options->system_hostfiles[options->num_system_hostfiles++] =
                     xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);                      xstrdup(_PATH_SSH_SYSTEM_HOSTFILE2);
         }          }
         if (options->update_hostkeys == -1) {          if (options->update_hostkeys == -1)
                 /*                          options->update_hostkeys = SSH_UPDATE_HOSTKEYS_NO;
                  * Enable UpdateHostKeys non-interactively if the user has  
                  * not overridden the default known_hosts selection, or has  
                  * overridden it with the default. Otherwise, prompt.  
                  */  
                 if (options->num_user_hostfiles == 0 ||  
                     (options->num_user_hostfiles == 1 && strcmp(options->  
                     user_hostfiles[0], _PATH_SSH_USER_HOSTFILE) == 0))  
                         options->update_hostkeys = SSH_UPDATE_HOSTKEYS_YES;  
                 else  
                         options->update_hostkeys = SSH_UPDATE_HOSTKEYS_ASK;  
         }  
         if (options->num_user_hostfiles == 0) {          if (options->num_user_hostfiles == 0) {
                 options->user_hostfiles[options->num_user_hostfiles++] =                  options->user_hostfiles[options->num_user_hostfiles++] =
                     xstrdup(_PATH_SSH_USER_HOSTFILE);                      xstrdup(_PATH_SSH_USER_HOSTFILE);

Legend:
Removed from v.1.324  
changed lines
  Added in v.1.325