You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-dev@httpd.apache.org by Cliff Woolley <jw...@virginia.edu> on 2003/10/16 02:29:54 UTC

Re: cvs commit: httpd-test/perl-framework/c-modules/echo_post_chunk mod_echo_post_chunk.c

On Wed, 15 Oct 2003 nd@apache.org wrote:

>   fix link error with apr 1.0
>
>   -    trailer_header = ap_table_get(r->headers_in, "X-Chunk-Trailer");
>   +    trailer_header = apr_table_get(r->headers_in, "X-Chunk-Trailer");

I fixed this in my local tree yesterday but then forgot about it.  It
actually needs an #ifdef since in Apache 1.3.x it really is ap_table_get.

I'll commit that.

Re: cvs commit: httpd-test/perl-framework/c-modules/echo_post_chunk mod_echo_post_chunk.c

Posted by André Malo <nd...@perlig.de>.
* Cliff Woolley <jw...@virginia.edu> wrote:

> On Wed, 15 Oct 2003 nd@apache.org wrote:
> 
> >   fix link error with apr 1.0
> >
> >   -    trailer_header = ap_table_get(r->headers_in, "X-Chunk-Trailer");
> >   +    trailer_header = apr_table_get(r->headers_in, "X-Chunk-Trailer");
> 
> I fixed this in my local tree yesterday but then forgot about it.  It
> actually needs an #ifdef since in Apache 1.3.x it really is ap_table_get.
> 
> I'll commit that.

Ah right. Thanks.

nd