[monitor.c]
     remove "\n" from fatal()
This commit is contained in:
Ben Lindstrom 2002-03-26 02:49:34 +00:00
parent c2c6cbc527
commit 2e9d866608
2 changed files with 6 additions and 3 deletions

View File

@ -19,6 +19,9 @@
- markus@cvs.openbsd.org 2002/03/24 18:05:29
[scard.c]
we need to figure out AUT0 for sc_private_encrypt, too
- stevesk@cvs.openbsd.org 2002/03/24 23:20:00
[monitor.c]
remove "\n" from fatal()
20020324
- (stevesk) [session.c] disable LOGIN_NEEDS_TERM until we are sure
@ -8033,4 +8036,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1983 2002/03/26 02:44:44 mouring Exp $
$Id: ChangeLog,v 1.1984 2002/03/26 02:49:34 mouring Exp $

View File

@ -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);