From d4293052e2cc616c3605aa8ed4511b4079533c32 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Tue, 14 Jun 2005 00:23:13 +0000 Subject: [PATCH] - 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 --- modules/cache/mod_disk_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.40.0