summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2002-01-22 02:52:42 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2002-01-22 02:52:42 +0000
commit948f788776fc57bd9fee9be08d5da3ec3888372b (patch)
treefec5ae75c467da283ace2b9a385f97df47594ce0 /usr.bin
parent29dca25c69ede40adb29d6834b180d036c51c58b (diff)
typo in error message; from djast@cs.toronto.edu
Diffstat (limited to 'usr.bin')
-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 6690699c4a9..8864426bab8 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.97 2002/01/04 18:14:16 stevesk Exp $");
+RCSID("$OpenBSD: servconf.c,v 1.98 2002/01/22 02:52:41 stevesk Exp $");
#if defined(KRB4) || defined(KRB5)
#include <krb.h>
@@ -407,7 +407,7 @@ process_server_config_line(ServerOptions *options, char *line,
return 0;
if (options->listen_addrs != NULL)
fatal("%s line %d: ports must be specified before "
- "ListenAdress.", filename, linenum);
+ "ListenAddress.", filename, linenum);
if (options->num_ports >= MAX_PORTS)
fatal("%s line %d: too many ports.",
filename, linenum);