diff options
author | 2001-11-22 05:27:29 +0000 | |
---|---|---|
committer | 2001-11-22 05:27:29 +0000 | |
commit | 5d3cf4284ee2b505018d2b636d1cc2e9e937191d (patch) | |
tree | 1f3601d566ea5591b2cbb3284238a3e9bb242b57 /usr.bin/ssh/ssh-keyscan.c | |
parent | Changes to allow two partitions to share a quota file (diff) | |
download | wireguard-openbsd-5d3cf4284ee2b505018d2b636d1cc2e9e937191d.tar.xz wireguard-openbsd-5d3cf4284ee2b505018d2b636d1cc2e9e937191d.zip |
don't use "\n" in fatal()
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index 4bb21001fcc..2f7b0df2bf3 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -7,7 +7,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keyscan.c,v 1.31 2001/11/16 12:46:13 markus Exp $"); +RCSID("$OpenBSD: ssh-keyscan.c,v 1.32 2001/11/22 05:27:29 stevesk Exp $"); #include <sys/queue.h> #include <errno.h> @@ -717,7 +717,7 @@ main(int argc, char **argv) get_keytypes |= KT_RSA; break; case KEY_UNSPEC: - fatal("unknown key type %s\n", tname); + fatal("unknown key type %s", tname); } tname = strtok(NULL, ","); } |