Displaying 1 result from an estimated 1 matches for "key_msg".
Did you mean:
skey_msg
2010 Dec 09
0
[PATCH] mention ssh-keyscan in remote host fingerprint warning
...Index: openssh/sshconnect.c
===================================================================
--- openssh.orig/sshconnect.c 2010-12-09 10:21:33.889760054 -0500
+++ openssh/sshconnect.c 2010-12-09 10:22:02.139864915 -0500
@@ -908,14 +908,17 @@
error("%s. This could either mean that", key_msg);
error("DNS SPOOFING is happening or the IP address for the host");
error("and its host key have changed at the same time.");
- if (ip_status != HOST_NEW)
+ if (ip_status != HOST_NEW) {
error("Offending key for IP in %s:%d", ip_file, ip_line);
+ er...