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

Diff for /src/usr.bin/ssh/sshd.c between version 1.413 and 1.414

version 1.413, 2013/12/30 23:52:28 version 1.414, 2014/01/09 23:26:48
Line 481 
Line 481 
                     get_remote_ipaddr(), client_version_string);                      get_remote_ipaddr(), client_version_string);
                 cleanup_exit(255);                  cleanup_exit(255);
         }          }
         if ((datafellows & SSH_BUG_RSASIGMD5) != 0)          if ((datafellows & SSH_BUG_RSASIGMD5) != 0) {
                 logit("Client version \"%.100s\" uses unsafe RSA signature "                  logit("Client version \"%.100s\" uses unsafe RSA signature "
                     "scheme; disabling use of RSA keys", remote_version);                      "scheme; disabling use of RSA keys", remote_version);
           }
           if ((datafellows & SSH_BUG_DERIVEKEY) != 0) {
                   fatal("Client version \"%.100s\" uses unsafe key agreement; "
                       "refusing connection", remote_version);
           }
   
         mismatch = 0;          mismatch = 0;
         switch (remote_major) {          switch (remote_major) {

Legend:
Removed from v.1.413  
changed lines
  Added in v.1.414