]> granicus.if.org Git - apache/commitdiff
correct return val, the char* is pushed on the lua stack.
authorEric Covener <covener@apache.org>
Tue, 8 Nov 2011 00:25:47 +0000 (00:25 +0000)
committerEric Covener <covener@apache.org>
Tue, 8 Nov 2011 00:25:47 +0000 (00:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199028 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/lua_request.c

index a4a3a4ece97f13252bef887f15de3af93ff996c7..63b6b699bd3ff62250575bec5f2b50ad5c927420 100644 (file)
@@ -210,7 +210,7 @@ static int req_construct_url(lua_State *L)
 }
 
 /* wrap ap_escape_html r:escape_html(String) */
-static char * req_escape_html(lua_State *L)
+static int req_escape_html(lua_State *L)
 {
     request_rec *r = ap_lua_check_request_rec(L, 1);
     const char *s = luaL_checkstring(L, 2);