You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2005/04/25 19:21:42 UTC

svn commit: r164606 - /httpd/httpd/branches/2.0.x/STATUS

Author: jim
Date: Mon Apr 25 10:21:40 2005
New Revision: 164606

URL: http://svn.apache.org/viewcvs?rev=164606&view=rev
Log:
Bug fix backport

Modified:
    httpd/httpd/branches/2.0.x/STATUS

Modified: httpd/httpd/branches/2.0.x/STATUS
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/STATUS?rev=164606&r1=164605&r2=164606&view=diff
==============================================================================
--- httpd/httpd/branches/2.0.x/STATUS (original)
+++ httpd/httpd/branches/2.0.x/STATUS Mon Apr 25 10:21:40 2005
@@ -95,6 +95,11 @@
     identify exactly what the proposed changes are! ]
   [ please append new backports at the end of this list not the top. ]
 
+    *) ap_proxy_canonenc() is over-eager in handling '%' for reverse
+       proxies (PR: 29554).
+         http://svn.apache.org/viewcvs.cgi?rev=151153&view=rev
+       +1: jim
+
     *) several changes to improve logging of connection-oriented errors, including
        ap_log_cerror() API (needs minor bump in addition to changes below)
          http://cvs.apache.org/viewcvs.cgi/httpd-2.0/server/core.c?r1=1.289&r2=1.291



Re: svn commit: r164606 - /httpd/httpd/branches/2.0.x/STATUS

Posted by Joe Orton <jo...@redhat.com>.
On Mon, Apr 25, 2005 at 05:21:42PM -0000, Jim Jagielski wrote:
...
> --- httpd/httpd/branches/2.0.x/STATUS (original)
> +++ httpd/httpd/branches/2.0.x/STATUS Mon Apr 25 10:21:40 2005
> @@ -95,6 +95,11 @@
>      identify exactly what the proposed changes are! ]
>    [ please append new backports at the end of this list not the top. ]
>  
> +    *) ap_proxy_canonenc() is over-eager in handling '%' for reverse
> +       proxies (PR: 29554).
> +         http://svn.apache.org/viewcvs.cgi?rev=151153&view=rev
> +       +1: jim
> +

I don't think it's quite that simple...

151153 changes a bunch of stuff which isn't in 2.0, e.g.:

http://svn.apache.org/viewcvs.cgi/httpd/httpd/trunk/modules/proxy/mod_proxy.c?rev=151153&view=diff&r1=151153&r2=151152&p1=httpd/httpd/trunk/modules/proxy/mod_proxy.c&p2=/httpd/httpd/trunk/modules/proxy/mod_proxy.c

and it also includes a backwards-incompatible API change to
ap_proxy_canonenc()

joe