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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.142 and 1.143

version 1.142, 2003/05/23 08:29:30 version 1.143, 2003/05/26 12:54:40
Line 840 
Line 840 
                             host_file, host_line);                              host_file, host_line);
                 }                  }
                 if (options.strict_host_key_checking == 1) {                  if (options.strict_host_key_checking == 1) {
                         logit(msg);                          logit("%s", msg);
                         error("Exiting, you have requested strict checking.");                          error("Exiting, you have requested strict checking.");
                         goto fail;                          goto fail;
                 } else if (options.strict_host_key_checking == 2) {                  } else if (options.strict_host_key_checking == 2) {
Line 849 
Line 849 
                         if (!confirm(msg))                          if (!confirm(msg))
                                 goto fail;                                  goto fail;
                 } else {                  } else {
                         logit(msg);                          logit("%s", msg);
                 }                  }
         }          }
   

Legend:
Removed from v.1.142  
changed lines
  Added in v.1.143