From: Jeff Trawick Date: Wed, 16 Nov 2005 01:31:44 +0000 (+0000) Subject: Fix typo in ProxyStatus syntax error message. X-Git-Tag: 2.3.0~2762 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a67f28030281f63b83151d77729f69b6d08f32a;p=thirdparty%2Fapache%2Fhttpd.git Fix typo in ProxyStatus syntax error message. Submitted by: Christophe Jaillet Reviewed by: trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@344491 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 53ae5535d88..462b248ae8e 100644 --- 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 ] + *) Asynchronous write completion for the Event MPM. [Brian Pane] *) Added an End-Of-Request bucket type. The logging of a request and diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 1424fe74294..4eab150829e 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -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;