You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2002/03/07 23:47:15 UTC

cvs commit: httpd-2.0/modules/experimental mod_cache.h

stoddard    02/03/07 14:47:15

  Modified:    modules/experimental mod_cache.h
  Log:
  Deconstify these fields...
  
  Revision  Changes    Path
  1.21      +4 -4      httpd-2.0/modules/experimental/mod_cache.h
  
  Index: mod_cache.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_cache.h,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- mod_cache.h	7 Mar 2002 22:13:15 -0000	1.20
  +++ mod_cache.h	7 Mar 2002 22:47:15 -0000	1.21
  @@ -180,10 +180,10 @@
   /* 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];