]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix typo in ProxyStatus syntax error message.
authorJeff Trawick <trawick@apache.org>
Wed, 16 Nov 2005 01:31:44 +0000 (01:31 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 16 Nov 2005 01:31:44 +0000 (01:31 +0000)
Submitted by: Christophe Jaillet <christophe.jaillet wanadoo.fr>
Reviewed by:  trawick

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@344491 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/proxy/mod_proxy.c

diff --git a/CHANGES b/CHANGES
index 53ae5535d88c471a4386bf5978c3430d2f1a9d99..462b248ae8e3cdbc7ecb3ebec2fa363a0c239b06 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 Changes with Apache 2.3.0
   [Remove entries to the current 2.0 and 2.2 section below, when backported]
 
+  *) Fix typo in ProxyStatus syntax error message.
+     [Christophe Jaillet <christophe.jaillet wanadoo.fr>]
+
   *) Asynchronous write completion for the Event MPM.  [Brian Pane]
 
   *) Added an End-Of-Request bucket type.  The logging of a request and
index 1424fe74294cebc6152364359b903ec50ddd6720..4eab150829ee410490b78e7fff89ee5fb2f699b5 100644 (file)
@@ -1386,7 +1386,7 @@ static const char*
         psf->proxy_status = status_full;
     else {
         return "ProxyStatus must be one of: "
-            "off | on | block";
+            "off | on | full";
     }
 
     psf->proxy_status_set = 1;