]> granicus.if.org Git - apache/commitdiff
Backport r1588807
authorDaniel Gruno <humbedooh@apache.org>
Sun, 20 Apr 2014 17:56:41 +0000 (17:56 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sun, 20 Apr 2014 17:56:41 +0000 (17:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1588808 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/lua_request.c

index bd7ce0c0c2731fa620abde787616a51e1092e954..10b491537e7205bc641ccf5345809d138f72362f 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;