You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by st...@apache.org on 2004/12/08 16:11:16 UTC

svn commit: r111274 - /httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm

Author: stas
Date: Wed Dec  8 07:11:16 2004
New Revision: 111274

URL: http://svn.apache.org/viewcvs?view=rev&rev=111274
Log:
tied STDOUT is broken on OSX, s/printf/$r->printf/ to avoid the problem

Modified:
   httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm

Modified: httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm
Url: http://svn.apache.org/viewcvs/httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm?view=diff&rev=111274&p1=httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm&r1=111273&p2=httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm&r2=111274
==============================================================================
--- httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm	(original)
+++ httpd/apreq/branches/1.x/t/response/TestApReq/inherit.pm	Wed Dec  8 07:11:16 2004
@@ -7,7 +7,7 @@
     $r->send_http_header('text/plain');
 
     my $apr = Apache::Request->new($r);
-    printf "method => %s\n", $apr->method;
+    $r->printf("method => %s\n", $apr->method);
     return OK;
 }