Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 26732 invoked from network); 6 May 2004 19:11:35 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 6 May 2004 19:11:35 -0000 Received: (qmail 11417 invoked by uid 500); 6 May 2004 19:11:28 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 11369 invoked by uid 500); 6 May 2004 19:11:27 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 11343 invoked from network); 6 May 2004 19:11:26 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 6 May 2004 19:11:26 -0000 Received: (qmail 26704 invoked by uid 1072); 6 May 2004 19:11:33 -0000 Date: 6 May 2004 19:11:33 -0000 Message-ID: <20040506191133.26703.qmail@minotaur.apache.org> From: stas@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/Apache-Test Changes X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N stas 2004/05/06 12:11:33 Modified: perl-framework/Apache-Test/lib/Apache TestRequest.pm perl-framework/Apache-Test Changes Log: Fix Apache::TestRequest::lwp_as_string to work with LWP 5.79 Revision Changes Path 1.96 +1 -1 httpd-test/perl-framework/Apache-Test/lib/Apache/TestRequest.pm Index: TestRequest.pm =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRequest.pm,v retrieving revision 1.95 retrieving revision 1.96 diff -u -u -r1.95 -r1.96 --- TestRequest.pm 4 Mar 2004 05:51:31 -0000 1.95 +++ TestRequest.pm 6 May 2004 19:11:33 -0000 1.96 @@ -387,7 +387,7 @@ $r->header('X-Content-length-note' => 'added by Apache::TestRequest'); } - $r->content(undef) unless $want_body; + $r->content('') unless $want_body; (my $string = $r->as_string) =~ s/^/\#/mg; $r->content($content); #reset 1.127 +1 -0 httpd-test/perl-framework/Apache-Test/Changes Index: Changes =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v retrieving revision 1.126 retrieving revision 1.127 diff -u -u -r1.126 -r1.127 --- Changes 19 Apr 2004 02:38:58 -0000 1.126 +++ Changes 6 May 2004 19:11:33 -0000 1.127 @@ -8,6 +8,7 @@ =item 1.11-dev +Fix Apache::TestRequest::lwp_as_string to work with LWP 5.79 [Stas]