Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 76758 invoked by uid 500); 25 Aug 2003 19:55:53 -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 76745 invoked by uid 500); 25 Aug 2003 19:55:53 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 76739 invoked from network); 25 Aug 2003 19:55:53 -0000 Received: from minotaur.apache.org (209.237.227.194) by daedalus.apache.org with SMTP; 25 Aug 2003 19:55:53 -0000 Received: (qmail 11598 invoked by uid 1569); 25 Aug 2003 19:56:00 -0000 Date: 25 Aug 2003 19:56:00 -0000 Message-ID: <20030825195600.11597.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.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N nd 2003/08/25 12:56:00 Modified: modules/filters mod_include.c Log: fix compiler warning on win32 Revision Changes Path 1.267 +1 -1 httpd-2.0/modules/filters/mod_include.c Index: mod_include.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.c,v retrieving revision 1.266 retrieving revision 1.267 diff -u -r1.266 -r1.267 --- mod_include.c 25 Aug 2003 16:05:13 -0000 1.266 +++ mod_include.c 25 Aug 2003 19:56:00 -0000 1.267 @@ -658,7 +658,7 @@ request_rec *r = ctx->intern->r; if (apr_isdigit(*var) && !var[1]) { - int idx = *var - '0'; + apr_size_t idx = *var - '0'; backref_t *re = ctx->intern->re; /* Handle $0 .. $9 from the last regex evaluated.