You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2013/05/03 16:05:02 UTC

svn commit: r1478798 - /httpd/httpd/trunk/modules/cache/cache_storage.c

Author: fuankg
Date: Fri May  3 14:05:01 2013
New Revision: 1478798

URL: http://svn.apache.org/r1478798
Log:
Silent no-prototype compiler warning.

Modified:
    httpd/httpd/trunk/modules/cache/cache_storage.c

Modified: httpd/httpd/trunk/modules/cache/cache_storage.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/cache_storage.c?rev=1478798&r1=1478797&r2=1478798&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/cache_storage.c (original)
+++ httpd/httpd/trunk/modules/cache/cache_storage.c Fri May  3 14:05:01 2013
@@ -376,7 +376,7 @@ int cache_select(cache_request_rec *cach
     return DECLINED;
 }
 
-apr_status_t cache_canonicalise_key(request_rec *r, apr_pool_t* p,
+static apr_status_t cache_canonicalise_key(request_rec *r, apr_pool_t* p,
         const char *uri, apr_uri_t *parsed_uri, const char **key)
 {
     cache_server_conf *conf;