From: Paul Querna Date: Tue, 14 Jun 2005 00:23:13 +0000 (+0000) Subject: - Partial revert of revision 190535. Remove const from tempfile, since apr_file_mkte... X-Git-Tag: 2.1.5~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4293052e2cc616c3605aa8ed4511b4079533c32;p=apache - Partial revert of revision 190535. Remove const from tempfile, since apr_file_mktemp() requires it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190536 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_disk_cache.c b/modules/cache/mod_disk_cache.c index 887f187e3d..4afce624f9 100644 --- a/modules/cache/mod_disk_cache.c +++ b/modules/cache/mod_disk_cache.c @@ -75,7 +75,7 @@ typedef struct { */ typedef struct disk_cache_object { const char *root; /* the location of the cache directory */ - const char *tempfile; /* temp file tohold the content */ + char *tempfile; /* temp file tohold the content */ const char *datafile; /* name of file where the data will go */ const char *hdrsfile; /* name of file where the hdrs will go */ const char *hashfile; /* Computed hash key for this URI */