You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2014/04/20 19:56:41 UTC

svn commit: r1588808 - /httpd/httpd/branches/2.4.x/modules/lua/lua_request.c

Author: humbedooh
Date: Sun Apr 20 17:56:41 2014
New Revision: 1588808

URL: http://svn.apache.org/r1588808
Log:
Backport r1588807

Modified:
    httpd/httpd/branches/2.4.x/modules/lua/lua_request.c

Modified: httpd/httpd/branches/2.4.x/modules/lua/lua_request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/lua/lua_request.c?rev=1588808&r1=1588807&r2=1588808&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/lua/lua_request.c (original)
+++ httpd/httpd/branches/2.4.x/modules/lua/lua_request.c Sun Apr 20 17:56:41 2014
@@ -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;