Displaying 1 result from an estimated 1 matches for "find_hosts_by_key".
2004 Oct 03
0
[patch] tell user about hosts with same key
...char msg1[1024], msg2[1024], msg_same_key[1024];
if (show_other_keys(host, host_key))
snprintf(msg1, sizeof(msg1),
@@ -724,6 +724,29 @@
" known for this host.");
else
snprintf(msg1, sizeof(msg1), ".");
+
+ HostList *keyhosts = NULL;
+ keyhosts = find_hosts_by_key(user_hostfile, host_key, keyhosts);
+ keyhosts = find_hosts_by_key(system_hostfile, host_key, keyhosts);
+ if (keyhosts != NULL) {
+ snprintf(msg_same_key, sizeof(msg_same_key),
+ "The following hosts are already known to "
+ "have the same key:\n");
+
+ Host...