Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 66585 invoked by uid 500); 22 Aug 2003 03:24:25 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 66569 invoked by uid 500); 22 Aug 2003 03:24:25 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 66564 invoked from network); 22 Aug 2003 03:24:25 -0000 Received: from minotaur.apache.org (209.237.227.194) by daedalus.apache.org with SMTP; 22 Aug 2003 03:24:25 -0000 Received: (qmail 71945 invoked by uid 1569); 22 Aug 2003 02:23:41 -0000 Date: 22 Aug 2003 02:23:41 -0000 Message-ID: <20030822022341.71944.qmail@minotaur.apache.org> From: nd@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/filters mod_include.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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;