From: Daniel Gruno Date: Sun, 20 Apr 2014 17:56:10 +0000 (+0000) Subject: mod_lua: stop complaining X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbe9f116ee4c3df3499ac313e4207d9281752982;p=thirdparty%2Fapache%2Fhttpd.git mod_lua: stop complaining git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1588807 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/lua/lua_request.c b/modules/lua/lua_request.c index f2de2751ef1..272936ecb3c 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;