Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 43265 invoked from network); 28 Aug 2003 01:35:54 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 28 Aug 2003 01:35:54 -0000 Received: (qmail 57843 invoked by uid 500); 28 Aug 2003 01:35:33 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 57804 invoked by uid 500); 28 Aug 2003 01:35:33 -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 57763 invoked by uid 500); 28 Aug 2003 01:35:32 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 57748 invoked from network); 28 Aug 2003 01:35:32 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 28 Aug 2003 01:35:32 -0000 Received: (qmail 43231 invoked by uid 1569); 28 Aug 2003 01:35:47 -0000 Date: 28 Aug 2003 01:35:47 -0000 Message-ID: <20030828013547.43230.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 X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N nd 2003/08/27 18:35:47 Modified: modules/filters mod_include.c Log: be nice and accept == as well as token_eq. Revision Changes Path 1.282 +1 -0 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.281 retrieving revision 1.282 diff -u -r1.281 -r1.282 --- mod_include.c 28 Aug 2003 01:13:11 -0000 1.281 +++ mod_include.c 28 Aug 2003 01:35:46 -0000 1.282 @@ -1023,6 +1023,7 @@ TYPE_TOKEN(token, TOKEN_RBRACE); return 0; case '=': + if (**parse == '=') ++*parse; TYPE_TOKEN(token, TOKEN_EQ); return 0; case '!':