From: Bill Stoddard Date: Thu, 7 Mar 2002 22:47:15 +0000 (+0000) Subject: Deconstify these fields... X-Git-Tag: CHANGES~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11cd8210d8e75dde406f6bbf7944bbbf35bc49c3;p=thirdparty%2Fapache%2Fhttpd.git Deconstify these fields... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93781 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_cache.h b/modules/experimental/mod_cache.h index 7d7fd1d5ede..b129c2e3376 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];