summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--servconf.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6fe6d181..0ebcb35c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -223,6 +223,9 @@
[channels.c nchan.c]
cleanup channels faster if the are empty and we are in drain-state;
ok deraadt@
+ - stevesk@cvs.openbsd.org 2002/01/22 02:52:41
+ [servconf.c]
+ typo in error message; from djast@cs.toronto.edu
20020121
- (djm) Rework ssh-rand-helper:
@@ -7370,4 +7373,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1785 2002/01/22 12:34:52 djm Exp $
+$Id: ChangeLog,v 1.1786 2002/01/22 12:35:09 djm Exp $
diff --git a/servconf.c b/servconf.c
index 445d2da7..0cb744a1 100644
--- a/servconf.c
+++ b/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>
@@ -429,7 +429,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);