diff options
author | 2012-08-17 01:25:58 +0000 | |
---|---|---|
committer | 2012-08-17 01:25:58 +0000 | |
commit | 0a19ea94d1cdb42aadadd6e10591eba0770f7d50 (patch) | |
tree | 5a26f9000b3d37db38753803305509e0aec81d1e | |
parent | add some comments about better handling first-KEX-follows notifications (diff) | |
download | wireguard-openbsd-0a19ea94d1cdb42aadadd6e10591eba0770f7d50.tar.xz wireguard-openbsd-0a19ea94d1cdb42aadadd6e10591eba0770f7d50.zip |
print details of which host lines were deleted when using
"ssh-keygen -R host"; ok markus@
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 42ca842cad0..fa50e83770a 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.216 2012/07/06 06:38:03 jmc Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.217 2012/08/17 01:25:58 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1073,8 +1073,14 @@ do_known_hosts(struct passwd *pw, const char *name) ca ? " (CA key)" : ""); printhost(out, cp, pub, ca, 0); } - if (delete_host && !c && !ca) - printhost(out, cp, pub, ca, 0); + if (delete_host) { + if (!c && !ca) + printhost(out, cp, pub, ca, 0); + else + printf("# Host %s found: " + "line %d type %s\n", name, + num, key_type(pub)); + } } else if (hash_hosts) printhost(out, cp, pub, ca, 0); } else { @@ -1089,8 +1095,14 @@ do_known_hosts(struct passwd *pw, const char *name) printhost(out, name, pub, ca, hash_hosts && !ca); } - if (delete_host && !c && !ca) - printhost(out, cp, pub, ca, 0); + if (delete_host) { + if (!c && !ca) + printhost(out, cp, pub, ca, 0); + else + printf("# Host %s found: " + "line %d type %s\n", name, + num, key_type(pub)); + } } else if (hash_hosts) { for (cp2 = strsep(&cp, ","); cp2 != NULL && *cp2 != '\0'; |