]> granicus.if.org Git - apache/commitdiff
Use ap_args_to_table instead of apreq for GET query params.
authorPaul Querna <pquerna@apache.org>
Fri, 5 Dec 2008 07:17:07 +0000 (07:17 +0000)
committerPaul Querna <pquerna@apache.org>
Fri, 5 Dec 2008 07:17:07 +0000 (07:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/wombat-integration@723631 13f79535-47bb-0310-9956-ffa450edef68

modules/wombat/request.c

index 0c1a997564c5c82504c37e16d2bf6637ccd68457..b7685ff0d8d14f1953d4abd8425dbc03309b7e81 100644 (file)
@@ -139,11 +139,10 @@ static int req_aprtable2luatable_cb(void *l, const char *key, const char *value)
 /* r:parseargs() returning a lua table */
 static int req_parseargs(lua_State* L) {
     request_rec* r = apw_check_request_rec(L, 1);
-    apreq_handle_t* h = apreq_handle_apache2(r);
     lua_newtable(L);
     lua_newtable(L); /* [table, table] */
     const apr_table_t* form_table;
-    if (apreq_args(h, &form_table) == APR_SUCCESS) {
+    if (ap_args_to_table(r, &form_table) == APR_SUCCESS) {
         apr_table_do(req_aprtable2luatable_cb, L, form_table, NULL);                
     }
     return 2; /* [table<string, string>, table<string, array<string>>] */