summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2002-12-05 23:45:02 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2002-12-05 23:45:02 +0000
commit7654c4a4b93a0c8473a697480f604acf3272bbcc (patch)
tree663969e621f9cd6bf4d4efe02966e13979528175
parent530aca3e56de5296ec32f3a6840f20a6a090e84f (diff)
typo in error message; Tor Houghton
-rw-r--r--usr.sbin/httpd/src/main/http_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/src/main/http_main.c b/usr.sbin/httpd/src/main/http_main.c
index 793c120dcc0..37320b428be 100644
--- a/usr.sbin/httpd/src/main/http_main.c
+++ b/usr.sbin/httpd/src/main/http_main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: http_main.c,v 1.26 2002/10/07 20:23:06 henning Exp $ */
+/* $OpenBSD: http_main.c,v 1.27 2002/12/05 23:45:01 henning Exp $ */
/* ====================================================================
* The Apache Software License, Version 1.1
@@ -3860,7 +3860,7 @@ static int make_sock(pool *p, const struct sockaddr_in *server)
if (setsockopt(s, SOL_SOCKET, SO_ACCEPTFILTER, &af, sizeof(af)) < 0) {
if (errno == ENOPROTOOPT) {
ap_log_error(APLOG_MARK, APLOG_INFO | APLOG_NOERRNO, server_conf,
- "socket option SO_ACCEPTFILTER unkown on this machine. Continuing.");
+ "socket option SO_ACCEPTFILTER unknown on this machine. Continuing.");
} else {
ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_INFO, server_conf,
"make_sock: for %s, setsockopt: (SO_ACCEPTFILTER)", addr);