From: Daniel Gruno Date: Wed, 11 Apr 2012 16:49:11 +0000 (+0000) Subject: xforms X-Git-Tag: 2.5.0-alpha~7199 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2322b78ff4c67a6858da70df5b9dee426c216dff;p=thirdparty%2Fapache%2Fhttpd.git xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1324863 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 85ac832d314..e46d1c0849a 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -1540,13 +1540,12 @@ or check out the rest of our documentation for further tips.
-const char *read_post_value(const char *key) 
+const char *read_post_value(const apr_array_header_t *fields, const char *key) 
 {
-    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
-    const apr_array_header_t    *fields;
+    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
     int                         i;
     apr_table_entry_t           *e = 0;
-    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
+    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
     e = (apr_table_entry_t *) fields->elts;
     for(i = 0; i < fields->nelts; i++) {
         if(!strcmp(e[i].key, key)) return e[i].val;