diff options
author | 2001-10-25 21:14:32 +0000 | |
---|---|---|
committer | 2001-10-25 21:14:32 +0000 | |
commit | 0b433b7da2abf0703f2a7b5ec6326b5220c9f7da (patch) | |
tree | 4c62c2653c07baaafc0b5d13303105d4b5d844cc /usr.bin/ssh/ssh-keygen.c | |
parent | add more supported cards adn alphabetize the lists (diff) | |
download | wireguard-openbsd-0b433b7da2abf0703f2a7b5ec6326b5220c9f7da.tar.xz wireguard-openbsd-0b433b7da2abf0703f2a7b5ec6326b5220c9f7da.zip |
better docu for fingerprinting, ok deraadt@
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 780cad328f5..1da93541397 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.82 2001/09/28 12:07:09 djm Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.83 2001/10/25 21:14:32 markus Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -611,7 +611,7 @@ do_fingerprint(struct passwd *pw) fclose(f); } if (invalid) { - printf("%s is not a valid key file.\n", identity_file); + printf("%s is not a public key file.\n", identity_file); exit(1); } exit(0); |