mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-17 06:16:55 +00:00
- 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
|
- markus@cvs.openbsd.org 2001/05/03 15:45:15
|
||||||
[session.c]
|
[session.c]
|
||||||
exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au
|
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
|
20010503
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
@ -5317,4 +5320,4 @@
|
|||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- 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"
|
#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
|
#ifdef KRB4
|
||||||
#include <krb.h>
|
#include <krb.h>
|
||||||
@ -401,7 +401,7 @@ read_server_config(ServerOptions *options, const char *filename)
|
|||||||
continue;
|
continue;
|
||||||
if (options->listen_addrs != NULL)
|
if (options->listen_addrs != NULL)
|
||||||
fatal("%s line %d: ports must be specified before "
|
fatal("%s line %d: ports must be specified before "
|
||||||
"ListenAdress.\n", filename, linenum);
|
"ListenAdress.", filename, linenum);
|
||||||
if (options->num_ports >= MAX_PORTS)
|
if (options->num_ports >= MAX_PORTS)
|
||||||
fatal("%s line %d: too many ports.",
|
fatal("%s line %d: too many ports.",
|
||||||
filename, linenum);
|
filename, linenum);
|
||||||
|
Loading…
Reference in New Issue
Block a user