summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2008-04-25 14:51:36 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2008-04-25 14:51:36 +0000
commita9512276a49b114af9fc563f895fb561d2031614 (patch)
tree6cf593acdd9a9ac40c4e85522768c9835c70ea4c /usr.sbin/httpd
parentd18431b58033077022c2be36a30813f75e95d0a1 (diff)
neccessary -> necessary; from Pierre Riteau
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r--usr.sbin/httpd/htdocs/manual/misc/rewriteguide.html2
-rw-r--r--usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_reference.html2
-rw-r--r--usr.sbin/httpd/src/modules/experimental/mod_auth_digest.c2
-rw-r--r--usr.sbin/httpd/src/modules/standard/mod_rewrite.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/httpd/htdocs/manual/misc/rewriteguide.html b/usr.sbin/httpd/htdocs/manual/misc/rewriteguide.html
index 403eda88a41..195daefd044 100644
--- a/usr.sbin/httpd/htdocs/manual/misc/rewriteguide.html
+++ b/usr.sbin/httpd/htdocs/manual/misc/rewriteguide.html
@@ -588,7 +588,7 @@ RewriteRule ^/cgi-bin/imagemap(.*) $1 [PT]
<dl>
<dt><strong>Description:</strong></dt>
- <dd>Sometimes it is neccessary to let the webserver search
+ <dd>Sometimes it is necessary to let the webserver search
for pages in more than one directory. Here MultiViews or
other techniques cannot help.</dd>
diff --git a/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_reference.html b/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_reference.html
index f7ecb633ffe..1173a6931ae 100644
--- a/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_reference.html
+++ b/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_reference.html
@@ -736,7 +736,7 @@ OpenSSL already caches the SSL session information locally. But because modern
clients request inlined images and other data via parallel requests (usually
up to four parallel requests are common) those requests are served by
<em>different</em> pre-forked server processes. Here an inter-process cache
-helps to avoid unneccessary session handshakes.
+helps to avoid unnecessary session handshakes.
<p>
The following two storage <em>type</em>s are currently supported:
<ul>
diff --git a/usr.sbin/httpd/src/modules/experimental/mod_auth_digest.c b/usr.sbin/httpd/src/modules/experimental/mod_auth_digest.c
index 62c267891ed..66ad0e55a5e 100644
--- a/usr.sbin/httpd/src/modules/experimental/mod_auth_digest.c
+++ b/usr.sbin/httpd/src/modules/experimental/mod_auth_digest.c
@@ -783,7 +783,7 @@ static void note_digest_auth_failure(request_rec *r,
/* setup domain attribute. We want to send this attribute wherever
* possible so that the client won't send the Authorization header
- * unneccessarily (it's usually > 200 bytes!).
+ * unnecessarily (it's usually > 200 bytes!).
*/
/* don't send domain
diff --git a/usr.sbin/httpd/src/modules/standard/mod_rewrite.c b/usr.sbin/httpd/src/modules/standard/mod_rewrite.c
index 2609cc03729..dcc4aaa99b3 100644
--- a/usr.sbin/httpd/src/modules/standard/mod_rewrite.c
+++ b/usr.sbin/httpd/src/modules/standard/mod_rewrite.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mod_rewrite.c,v 1.26 2008/04/13 00:22:17 djm Exp $ */
+/* $OpenBSD: mod_rewrite.c,v 1.27 2008/04/25 14:51:35 jmc Exp $ */
/* ====================================================================
* The Apache Software License, Version 1.1
@@ -1611,7 +1611,7 @@ static int handler_redirect(request_rec *r)
"mod_rewrite: maximum number of internal redirects "
"reached. Assuming configuration error. Use "
"'RewriteOptions MaxRedirects' to increase the limit "
- "if neccessary.");
+ "if necessary.");
return HTTP_INTERNAL_SERVER_ERROR;
}