Commit 5883ebe0 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

Fix typo in ProxyStatus syntax error message.

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
parent 9cb932d5
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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;