diff --git a/ChangeLog b/ChangeLog index de8f36473..386d16e01 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,9 @@ - markus@cvs.openbsd.org 2001/05/03 15:45:15 [session.c] exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au + - stevesk@cvs.openbsd.org 2001/05/03 21:43:01 + [servconf.c] + remove "\n" from fatal() 20010503 - OpenBSD CVS Sync @@ -5317,4 +5320,4 @@ - Wrote replacements for strlcpy and mkdtemp - Released 1.0pre1 -$Id: ChangeLog,v 1.1192 2001/05/03 22:37:26 mouring Exp $ +$Id: ChangeLog,v 1.1193 2001/05/03 22:39:11 mouring Exp $ diff --git a/servconf.c b/servconf.c index 73c07c2fe..37f607772 100644 --- a/servconf.c +++ b/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.78 2001/04/15 21:28:35 stevesk Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.79 2001/05/03 21:43:01 stevesk Exp $"); #ifdef KRB4 #include @@ -401,7 +401,7 @@ read_server_config(ServerOptions *options, const char *filename) continue; if (options->listen_addrs != NULL) fatal("%s line %d: ports must be specified before " - "ListenAdress.\n", filename, linenum); + "ListenAdress.", filename, linenum); if (options->num_ports >= MAX_PORTS) fatal("%s line %d: too many ports.", filename, linenum);