summaryrefslogtreecommitdiff
path: root/modules/cache
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2020-09-27 07:52:55 +0000
committerChristophe Jaillet <jailletc36@apache.org>2020-09-27 07:52:55 +0000
commit242d34175697d7cc185d3a2c4ffbae7a9ddba06b (patch)
tree95c710a08e40b2faa76eee86a0145df5936f5a53 /modules/cache
parentc77e6abe3b1d3d612bcf5ce694c8c937cf031fbb (diff)
downloadhttpd-242d34175697d7cc185d3a2c4ffbae7a9ddba06b.tar.gz
Add missing "const" or "static const" qualifiers in some command_rec
definitions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1882053 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r--modules/cache/mod_file_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cache/mod_file_cache.c b/modules/cache/mod_file_cache.c
index 4199361861..ce1db2d2c9 100644
--- a/modules/cache/mod_file_cache.c
+++ b/modules/cache/mod_file_cache.c
@@ -380,7 +380,7 @@ static int file_cache_handler(request_rec *r)
return rc;
}
-static command_rec file_cache_cmds[] =
+static const command_rec file_cache_cmds[] =
{
AP_INIT_ITERATE("cachefile", cachefilehandle, NULL, RSRC_CONF,
"A space separated list of files to add to the file handle cache at config time"),