You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/12/24 12:05:43 UTC

svn commit: r1425631 - /httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml

Author: humbedooh
Date: Mon Dec 24 11:05:42 2012
New Revision: 1425631

URL: http://svn.apache.org/viewvc?rev=1425631&view=rev
Log:
Fix example code

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml?rev=1425631&r1=1425630&r2=1425631&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml Mon Dec 24 11:05:42 2012
@@ -1708,7 +1708,7 @@ static int example_handler(request_req* 
     /*~~~~~~~~~~~~~~~~*/
 
     if(util_read(r, &data, &size) == OK) {
-        ap_rprintf("We read a request body that was %u bytes long", size);
+        ap_rprintf(r, "We read a request body that was %u bytes long", size);
     }
     return OK;
 }