You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Rainer Jung <ra...@kippdata.de> on 2021/10/07 12:31:37 UTC

Re: svn commit: r1893977 - in /httpd/httpd/branches/2.4.x: ./ CHANGES include/ap_mmn.h include/httpd.h server/gen_test_char.c server/request.c server/util.c

Am 07.10.2021 um 14:27 schrieb ylavic@apache.org:
> Modified: httpd/httpd/branches/2.4.x/include/ap_mmn.h
> URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/include/ap_mmn.h?rev=1893977&r1=1893976&r2=1893977&view=diff
> ==============================================================================
> --- httpd/httpd/branches/2.4.x/include/ap_mmn.h (original)
> +++ httpd/httpd/branches/2.4.x/include/ap_mmn.h Thu Oct  7 12:27:43 2021
> @@ -579,6 +579,9 @@
>    *                           ap_proxy_define_worker_ex() to mod_proxy.h
>    * 20120211.116 (2.4.49-dev) add conn_rec->outgoing and ap_ssl_bind_outgoing()
>    * 20120211.117 (2.4.50-dev) Add ap_pre_connection
> + * 20210926.1 (2.5.1-dev)  Add ap_unescape_url_ex() and deprecate
> + *                         AP_NORMALIZE_DROP_PARAMETERS
> + *
>    */
>   
>   #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */

Doesn't this need (a cosmetic) adjustment for 2.4.x?

Plus: if a minor bump is needed, this commit contains only a comment change.

Thanks for your intensive work!

Rainer

Re: svn commit: r1893977 - in /httpd/httpd/branches/2.4.x: ./ CHANGES include/ap_mmn.h include/httpd.h server/gen_test_char.c server/request.c server/util.c

Posted by Yann Ylavic <yl...@gmail.com>.
On Thu, Oct 7, 2021 at 2:31 PM Rainer Jung <ra...@kippdata.de> wrote:
>
> Am 07.10.2021 um 14:27 schrieb ylavic@apache.org:
> > Modified: httpd/httpd/branches/2.4.x/include/ap_mmn.h
> > URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/include/ap_mmn.h?rev=1893977&r1=1893976&r2=1893977&view=diff
> > ==============================================================================
> > --- httpd/httpd/branches/2.4.x/include/ap_mmn.h (original)
> > +++ httpd/httpd/branches/2.4.x/include/ap_mmn.h Thu Oct  7 12:27:43 2021
> > @@ -579,6 +579,9 @@
> >    *                           ap_proxy_define_worker_ex() to mod_proxy.h
> >    * 20120211.116 (2.4.49-dev) add conn_rec->outgoing and ap_ssl_bind_outgoing()
> >    * 20120211.117 (2.4.50-dev) Add ap_pre_connection
> > + * 20210926.1 (2.5.1-dev)  Add ap_unescape_url_ex() and deprecate
> > + *                         AP_NORMALIZE_DROP_PARAMETERS
> > + *
> >    */
> >
> >   #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */
>
> Doesn't this need (a cosmetic) adjustment for 2.4.x?

Yeah, was wrong in original trunk r1893971 too so I fixed both.

Thanks Rainer (and RĂ¼diger) for noticing.