Author: pgollucci
Date: Thu Jun 1 22:18:48 2006
New Revision: 411041
URL: http://svn.apache.org/viewvc?rev=411041&view=rev
Log:
2.0.56 of httpd which was not released, backported from 2.2.1
a Content-Length header change. 2.0.57 was also not released,
so 2.0.58 should be the only 2.0.x series version affect at the
time of this writing.
See here:
httpd/server/protocol/protocol.c r306495
*) keep the Content-Length header for a HEAD with no response body.
PR 18757 [Greg Ames]
Modified:
perl/modperl/trunk/t/apache/content_length_header.t
Modified: perl/modperl/trunk/t/apache/content_length_header.t
URL:
http://svn.apache.org/viewvc/perl/modperl/trunk/t/apache/content_length_header.t?rev=411041&r1=411040&r2=411041&view=diff
==============================================================================
--- perl/modperl/trunk/t/apache/content_length_header.t (original)
+++ perl/modperl/trunk/t/apache/content_length_header.t Thu Jun 1 22:18:48 2006
@@ -65,7 +65,7 @@
my $res = $method->($uri);
my $cl = 0;
- my $head_cl = have_min_apache_version("2.2.1") ? 25 : undef;
+ my $head_cl = have_min_apache_version("2.0.56") ? 25 : undef;
ok t_cmp $res->code, 200, "$method $uri code";
ok t_cmp ($res->header('Content-Length'),