summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2001-05-03 21:43:01 +0000
committerstevesk <stevesk@openbsd.org>2001-05-03 21:43:01 +0000
commit0096ce8c464e0cd15ffabb64b5b509ff6dcd48a5 (patch)
tree6d50ab3eb50e726c2aad8e1c2c9c5008ce055b39 /usr.bin/ssh
parentfix typo; isaki@par.odn.ne.jp (diff)
downloadwireguard-openbsd-0096ce8c464e0cd15ffabb64b5b509ff6dcd48a5.tar.xz
wireguard-openbsd-0096ce8c464e0cd15ffabb64b5b509ff6dcd48a5.zip
remove "\n" from fatal()
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c
index 3d0c9efa6f2..10ec41200a8 100644
--- a/usr.bin/ssh/servconf.c
+++ b/usr.bin/ssh/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 <krb.h>
@@ -397,7 +397,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);