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;
 }
 

Reply via email to