diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-25 21:27:17 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-25 21:27:17 +0000 |
commit | 4b5549eb7177dfc955b9247f9190ad9252c8039c (patch) | |
tree | 27bcc3ba33f8115a674ab5aa2e954560575e4b4e /usr.sbin/httpd | |
parent | ea6c22ed3e8787ca90bd0c939d3f389e7e2ec427 (diff) |
"interupt" -> "interrupt" in various comments. Mostly from Diego Casati.
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/src/CHANGES | 2 | ||||
-rw-r--r-- | usr.sbin/httpd/src/main/http_main.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/httpd/src/CHANGES b/usr.sbin/httpd/src/CHANGES index f7e44fb99e7..eafac5fd093 100644 --- a/usr.sbin/httpd/src/CHANGES +++ b/usr.sbin/httpd/src/CHANGES @@ -416,7 +416,7 @@ Changes with Apache 1.3.25 *) Allow child processes sufficient time for cleanups but making ap_select in reclaim_child_processes more "resistant" to - signal interupts. Bugz# 8176 + signal interrupts. Bugz# 8176 [David Winterbourne <davidw@financenter.com>, Jim Jagielski] *) Recognize platform specific root directories (other than diff --git a/usr.sbin/httpd/src/main/http_main.c b/usr.sbin/httpd/src/main/http_main.c index ee2059e38e6..374b72fe20d 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.47 2007/03/30 09:54:19 pyr Exp $ */ +/* $OpenBSD: http_main.c,v 1.48 2007/05/25 21:27:16 krw Exp $ */ /* ==================================================================== * The Apache Software License, Version 1.1 @@ -1347,7 +1347,7 @@ static void reclaim_child_processes(int terminate) /* don't want to hold up progress any more than * necessary, but we need to allow children a few moments to exit. * Set delay with an exponential backoff. NOTE: if we get - * interupted, we'll wait longer than expected... + * interrupted, we'll wait longer than expected... */ tv.tv_sec = waittime / 1000000; tv.tv_usec = waittime % 1000000; |