Displaying 1 result from an estimated 1 matches for "print_host".
Did you mean:
ping_host
2007 Oct 10
0
PATCH: incorrect behaviour of 'ssh-keygen -HF'
...if manually included into the known_host file.
Patch against 4.7p1 attached.
J.
--
Jan Pechanec
-------------- next part --------------
--- openssh-4.7p1/ssh-keygen.c Mon Feb 19 12:10:25 2007
+++ openssh-4.7p1-patched/ssh-keygen.c Wed Oct 10 17:38:05 2007
@@ -598,7 +598,7 @@
}
static void
-print_host(FILE *f, char *name, Key *public, int hash)
+print_host(FILE *f, const char *name, Key *public, int hash)
{
if (hash && (name = host_hash(name, NULL, 0)) == NULL)
fatal("hash_host failed");
@@ -726,7 +726,7 @@
printf("# Host %s found: "
"line %...