From 2322b78ff4c67a6858da70df5b9dee426c216dff Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Wed, 11 Apr 2012 16:49:11 +0000 Subject: [PATCH] xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1324863 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/developer/modguide.html.en | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 85ac832d31..e46d1c0849 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;
-- 
2.40.0