]> granicus.if.org Git - apache/commitdiff
Fix example code
authorDaniel Gruno <humbedooh@apache.org>
Mon, 24 Dec 2012 11:05:07 +0000 (11:05 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Mon, 24 Dec 2012 11:05:07 +0000 (11:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1425630 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/modguide.xml

index e1c2b155b934b420cbe7dd92b696615dbb259dfb..f7934a03edcba3ab1e7f8b7add989d3fb2d79094 100644 (file)
@@ -1708,7 +1708,7 @@ static int example_handler(request_req* r)
     /*~~~~~~~~~~~~~~~~*/
 
     if(util_read(r, &amp;data, &amp;size) == OK) {
-        ap_rprintf(&quot;We read a request body that was %u bytes long&quot;, size);
+        ap_rprintf(r, &quot;We read a request body that was %u bytes long&quot;, size);
     }
     return OK;
 }