diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-03-24 23:20:01 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-03-24 23:20:01 +0000 |
commit | 0f0d9ebbb0f57c39b293556f9ade78b449709072 (patch) | |
tree | 131519db5b431a3cc4eba2ca0398d2a114214143 /usr.bin | |
parent | b53f7fdd95c26e7e70b5e8451f520fcecf977f1b (diff) |
remove "\n" from fatal()
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/monitor.c b/usr.bin/ssh/monitor.c index 921ad985a7b..06e536d8da5 100644 --- a/usr.bin/ssh/monitor.c +++ b/usr.bin/ssh/monitor.c @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: monitor.c,v 1.6 2002/03/21 18:38:33 stevesk Exp $"); +RCSID("$OpenBSD: monitor.c,v 1.7 2002/03/24 23:20:00 stevesk Exp $"); #include <openssl/dh.h> @@ -349,7 +349,7 @@ monitor_read(struct monitor *monitor, struct mon_table *ent, return ret; } - fatal("%s: unsupported request: %d\n", __FUNCTION__, type); + fatal("%s: unsupported request: %d", __FUNCTION__, type); /* NOTREACHED */ return (-1); |