[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.388 and 1.389

version 1.388, 2023/03/03 02:37:58 version 1.389, 2023/03/03 09:48:51
Line 2097 
Line 2097 
                         free(response);                          free(response);
                         response = read_passphrase("Accept updated hostkeys? "                          response = read_passphrase("Accept updated hostkeys? "
                             "(yes/no): ", RP_ECHO);                              "(yes/no): ", RP_ECHO);
                         if (strcasecmp(response, "yes") == 0)                          if (response != NULL && strcasecmp(response, "yes") == 0)
                                 break;                                  break;
                         else if (quit_pending || response == NULL ||                          else if (quit_pending || response == NULL ||
                             strcasecmp(response, "no") == 0) {                              strcasecmp(response, "no") == 0) {

Legend:
Removed from v.1.388  
changed lines
  Added in v.1.389