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:08:10 UTC

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

Author: pquerna
Date: Mon Jun 13 17:08:09 2005
New Revision: 190534

URL: http://svn.apache.org/viewcvs?rev=190534&view=rev
Log:
- Remove unused dirlevels and dirlength from the cache info structure.

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=190534&r1=190533&r2=190534&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:08:09 2005
@@ -76,10 +76,6 @@
 typedef struct disk_cache_object {
     const char *root;        /* the location of the cache directory */
     char *tempfile;          /* temp file tohold the content */
-#if 0
-    int dirlevels;              /* Number of levels of subdirectories */
-    int dirlength;            /* Length of subdirectory names */
-#endif
     char *datafile;          /* name of file where the data will go */
     char *hdrsfile;          /* name of file where the hdrs will go */
     char *hashfile;          /* Computed hash key for this URI */