From: Daniel Gruno Date: Mon, 24 Dec 2012 11:05:42 +0000 (+0000) Subject: Fix example code X-Git-Tag: 2.4.4~236 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29e19a972a76b8ea37ac9064373ed0ab8f6de3ae;p=apache Fix example code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1425631 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index e1c2b155b9..f7934a03ed 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -1708,7 +1708,7 @@ static int example_handler(request_req* r) /*~~~~~~~~~~~~~~~~*/ 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; }