mirror of git://anongit.mindrot.org/openssh.git
- stevesk@cvs.openbsd.org 2001/05/03 21:43:01
[servconf.c] remove "\n" from fatal()
This commit is contained in:
parent
60402fd42a
commit
a6218b81ca
|
@ -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 $
|
||||
|
|
|
@ -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 <krb.h>
|
||||
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue