]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_lua: stop complaining
authorDaniel Gruno <humbedooh@apache.org>
Sun, 20 Apr 2014 17:56:10 +0000 (17:56 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sun, 20 Apr 2014 17:56:10 +0000 (17:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1588807 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/lua_request.c

index f2de2751ef189b8e538097af31aed3433b2e5b43..272936ecb3cbb89df0ae6d00844bcb950a31c37d 100644 (file)
@@ -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;