From 3a67f28030281f63b83151d77729f69b6d08f32a Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 16 Nov 2005 01:31:44 +0000 Subject: [PATCH] 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 --- CHANGES | 3 +++ modules/proxy/mod_proxy.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 53ae5535d8..462b248ae8 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 1424fe7429..4eab150829 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; -- 2.40.0