summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-05-03 22:39:11 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-05-03 22:39:11 +0000
commita6218b81ca335b83f970e90fe4e65b22fa1812b6 (patch)
tree22e60342efb50847873097805012dd0e5a78e554
parent60402fd42a6305f1df1de9269ba1654f02fe1309 (diff)
- stevesk@cvs.openbsd.org 2001/05/03 21:43:01
[servconf.c] remove "\n" from fatal()
-rw-r--r--ChangeLog5
-rw-r--r--servconf.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index de8f36473..386d16e01 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,9 @@
6 - markus@cvs.openbsd.org 2001/05/03 15:45:15 6 - markus@cvs.openbsd.org 2001/05/03 15:45:15
7 [session.c] 7 [session.c]
8 exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au 8 exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au
9 - stevesk@cvs.openbsd.org 2001/05/03 21:43:01
10 [servconf.c]
11 remove "\n" from fatal()
9 12
1020010503 1320010503
11 - OpenBSD CVS Sync 14 - OpenBSD CVS Sync
@@ -5317,4 +5320,4 @@
5317 - Wrote replacements for strlcpy and mkdtemp 5320 - Wrote replacements for strlcpy and mkdtemp
5318 - Released 1.0pre1 5321 - Released 1.0pre1
5319 5322
5320$Id: ChangeLog,v 1.1192 2001/05/03 22:37:26 mouring Exp $ 5323$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 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.78 2001/04/15 21:28:35 stevesk Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.79 2001/05/03 21:43:01 stevesk Exp $");
14 14
15#ifdef KRB4 15#ifdef KRB4
16#include <krb.h> 16#include <krb.h>
@@ -401,7 +401,7 @@ read_server_config(ServerOptions *options, const char *filename)
401 continue; 401 continue;
402 if (options->listen_addrs != NULL) 402 if (options->listen_addrs != NULL)
403 fatal("%s line %d: ports must be specified before " 403 fatal("%s line %d: ports must be specified before "
404 "ListenAdress.\n", filename, linenum); 404 "ListenAdress.", filename, linenum);
405 if (options->num_ports >= MAX_PORTS) 405 if (options->num_ports >= MAX_PORTS)
406 fatal("%s line %d: too many ports.", 406 fatal("%s line %d: too many ports.",
407 filename, linenum); 407 filename, linenum);