From b35526d5e27252b4a4c444acfb648db16087aa20 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Sun, 20 Apr 2014 17:56:41 +0000 Subject: [PATCH] Backport r1588807 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1