From: Daniel Gruno Date: Mon, 24 Dec 2012 11:05:07 +0000 (+0000) Subject: Fix example code X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=348059bd48f70d09c1a83eab5aea27c6b0ed01b2;p=thirdparty%2Fapache%2Fhttpd.git Fix example code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1425630 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index e1c2b155b93..f7934a03edc 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; }