From: Daniel Gruno Date: Sat, 20 Apr 2013 07:10:23 +0000 (+0000) Subject: minor bug in a C example. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85a2b55ab5e718fbb1169096e0b2d6e7a3c8dc09;p=thirdparty%2Fapache%2Fhttpd.git minor bug in a C example. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1470115 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index da0b0eb7c13..346c4367cbf 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -1619,7 +1619,7 @@ static int example_handler(request_rec *r) keyValuePair* formData; /*~~~~~~~~~~~~~~~~~~~~~~*/ - formData = readPost(); + formData = readPost(r); if (formData) { int i; for (i = 0; formData[i]; i++) {