diff options
author | 2000-11-15 20:24:43 +0000 | |
---|---|---|
committer | 2000-11-15 20:24:43 +0000 | |
commit | 90ce40b63f0ac7301f29007051791e021ab277a0 (patch) | |
tree | 07a88c642ac232152d95a9988877cb026b963209 | |
parent | 6845 controller register definitions for vga(4) driver. (diff) | |
download | wireguard-openbsd-90ce40b63f0ac7301f29007051791e021ab277a0.tar.xz wireguard-openbsd-90ce40b63f0ac7301f29007051791e021ab277a0.zip |
Add missing \n at the end of an error message.
-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 26f0f841fd4..05c4f70bfaf 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.33 2000/11/12 19:50:38 markus Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.34 2000/11/15 20:24:43 millert Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -720,7 +720,7 @@ main(int ac, char **av) if (key_type_name != NULL) { type = key_type_from_name(key_type_name); if (type == KEY_UNSPEC) { - fprintf(stderr, "unknown key type %s", key_type_name); + fprintf(stderr, "unknown key type %s\n", key_type_name); exit(1); } } |