[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.229 and 1.230

version 1.229, 2010/11/29 23:45:51 version 1.230, 2010/12/14 11:59:06
Line 1208 
Line 1208 
 warn_changed_key(Key *host_key)  warn_changed_key(Key *host_key)
 {  {
         char *fp;          char *fp;
         const char *type = key_type(host_key);  
   
         fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);          fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
   
Line 1217 
Line 1216 
         error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");          error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
         error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");          error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
         error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");          error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
         error("It is also possible that the %s host key has just been changed.", type);          error("It is also possible that a host key has just been changed.");
         error("The fingerprint for the %s key sent by the remote host is\n%s.",          error("The fingerprint for the %s key sent by the remote host is\n%s.",
             type, fp);              key_type(host_key), fp);
         error("Please contact your system administrator.");          error("Please contact your system administrator.");
   
         xfree(fp);          xfree(fp);

Legend:
Removed from v.1.229  
changed lines
  Added in v.1.230