You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2005/06/14 02:23:14 UTC

svn commit: r190536 - /httpd/httpd/trunk/modules/cache/mod_disk_cache.c

Author: pquerna
Date: Mon Jun 13 17:23:13 2005
New Revision: 190536

URL: http://svn.apache.org/viewcvs?rev=190536&view=rev
Log:
- Partial revert of revision 190535.  Remove const from tempfile, since apr_file_mktemp() requires it.

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

Modified: httpd/httpd/trunk/modules/cache/mod_disk_cache.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/cache/mod_disk_cache.c?rev=190536&r1=190535&r2=190536&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_disk_cache.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_disk_cache.c Mon Jun 13 17:23:13 2005
@@ -75,7 +75,7 @@
  */
 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 */