You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2003/08/22 04:23:41 UTC

cvs commit: httpd-2.0/modules/filters mod_include.h

nd          2003/08/21 19:23:41

  Modified:    modules/filters mod_include.h
  Log:
  these should be const.
  
  Revision  Changes    Path
  1.37      +2 -2      httpd-2.0/modules/filters/mod_include.h
  
  Index: mod_include.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.h,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- mod_include.h	21 Aug 2003 22:01:34 -0000	1.36
  +++ mod_include.h	22 Aug 2003 02:23:41 -0000	1.37
  @@ -122,10 +122,10 @@
       unsigned     argc;
   
       /* currently configured error string */
  -    char        *error_str;
  +    const char  *error_str;
   
       /* currently configured time format */
  -    char        *time_str;
  +    const char  *time_str;
   
       /* pointer to internal (non-public) data, don't touch */
       struct ssi_internal_ctx *intern;