From 11cd8210d8e75dde406f6bbf7944bbbf35bc49c3 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Thu, 7 Mar 2002 22:47:15 +0000 Subject: [PATCH] Deconstify these fields... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93781 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_cache.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/experimental/mod_cache.h b/modules/experimental/mod_cache.h index 7d7fd1d5ed..b129c2e337 100644 --- a/modules/experimental/mod_cache.h +++ b/modules/experimental/mod_cache.h @@ -180,10 +180,10 @@ typedef struct { /* cache info information */ typedef struct cache_info cache_info; struct cache_info { - const char *content_type; - const char *etag; - const char *lastmods; /* last modified of cache entity */ - const char *filename; + char *content_type; + char *etag; + char *lastmods; /* last modified of cache entity */ + char *filename; apr_time_t date; apr_time_t lastmod; char lastmod_str[APR_RFC822_DATE_LEN]; -- 2.40.0