From: Daniel Gruno Date: Sun, 20 Apr 2014 17:56:41 +0000 (+0000) Subject: Backport r1588807 X-Git-Tag: 2.4.10~299 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b35526d5e27252b4a4c444acfb648db16087aa20;p=apache Backport r1588807 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1588808 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/lua/lua_request.c b/modules/lua/lua_request.c index bd7ce0c0c2..10b491537e 100644 --- a/modules/lua/lua_request.c +++ b/modules/lua/lua_request.c @@ -318,7 +318,7 @@ static int req_parseargs(lua_State *L) } /* ap_lua_binstrstr: Binary strstr function for uploaded data with NULL bytes */ -char* ap_lua_binstrstr (const char * haystack, size_t hsize, const char* needle, size_t nsize) +static char* ap_lua_binstrstr (const char * haystack, size_t hsize, const char* needle, size_t nsize) { if (haystack == NULL) return NULL; if (needle == NULL) return NULL;