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 2013/04/20 09:10:23 UTC

svn commit: r1470115 - /httpd/httpd/trunk/docs/manual/developer/modguide.xml

Author: humbedooh
Date: Sat Apr 20 07:10:23 2013
New Revision: 1470115

URL: http://svn.apache.org/r1470115
Log:
minor bug in a C example.

Modified:
    httpd/httpd/trunk/docs/manual/developer/modguide.xml

Modified: httpd/httpd/trunk/docs/manual/developer/modguide.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/developer/modguide.xml?rev=1470115&r1=1470114&r2=1470115&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/developer/modguide.xml (original)
+++ httpd/httpd/trunk/docs/manual/developer/modguide.xml Sat Apr 20 07:10:23 2013
@@ -1619,7 +1619,7 @@ static int example_handler(request_rec *
     keyValuePair* formData;
     /*~~~~~~~~~~~~~~~~~~~~~~*/
 
-    formData = readPost();
+    formData = readPost(r);
     if (formData) {
         int i;
         for (i = 0; formData[i]; i++) {