diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-11-22 05:27:30 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-11-22 05:27:30 +0000 |
commit | 2784c5fd143a3e950a0cd1ddf03327c8fbe2d860 (patch) | |
tree | b48d36f39accfd6cc371e7185600614de70d2f7c /usr.bin/ssh | |
parent | 27fe818cf0f75266966b91bd2c4aff37cf16e99f (diff) |
don't use "\n" in fatal()
Diffstat (limited to 'usr.bin/ssh')
-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, ","); } |