Re: svn commit: r490156 - /httpd/httpd/trunk/modules/metadata/mod_headers.c

2007-01-23 Thread Ruediger Pluem
On 12/25/2006 06:40 PM, [EMAIL PROTECTED] wrote: Author: niq Date: Mon Dec 25 09:40:10 2006 New Revision: 490156 URL: http://svn.apache.org/viewvc?view=revrev=490156 Log: PR#36609 - permit % as the last character of a Header value Modified:

Re: svn commit: r490156 - /httpd/httpd/trunk/modules/metadata/mod_headers.c

2007-01-23 Thread Nick Kew
On Tue, 23 Jan 2007 22:06:46 +0100 Ruediger Pluem [EMAIL PROTECTED] wrote: -/* Pass through %% as % */ -if (*s == '%') { +/* Pass through %% or % at end of string as % */ +if ((*s == '%') || (*s == '\0')) { tag-func = constant_item; tag-arg = %;