From 3a7ef57c8d3e75ec741f005e489d59f95214a9f8 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Sun, 20 Apr 2014 17:56:10 +0000 Subject: [PATCH] mod_lua: stop complaining git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1588807 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 f2de2751ef..272936ecb3 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;