From: Andre Malo Date: Wed, 4 Apr 2012 20:33:59 +0000 (+0000) Subject: static scope for rewritemap_mutex_type. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c89c8a43a7bd2fbb3ffe851b33f1eaa63cda829;p=thirdparty%2Fapache%2Fhttpd.git static scope for rewritemap_mutex_type. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1309585 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 8f5d3972ed1..a7fb0666d3b 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -401,7 +401,7 @@ static int proxy_available; /* Locks/Mutexes */ static apr_global_mutex_t *rewrite_mapr_lock_acquire = NULL; -const char *rewritemap_mutex_type = "rewrite-map"; +static const char *rewritemap_mutex_type = "rewrite-map"; /* Optional functions imported from mod_ssl when loaded: */ static APR_OPTIONAL_FN_TYPE(ssl_var_lookup) *rewrite_ssl_lookup = NULL;