Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 21332 invoked by uid 500); 25 Aug 2003 05:50:07 -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 21318 invoked by uid 500); 25 Aug 2003 05:50:06 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 21314 invoked from network); 25 Aug 2003 05:50:06 -0000 Received: from minotaur.apache.org (209.237.227.194) by daedalus.apache.org with SMTP; 25 Aug 2003 05:50:06 -0000 Received: (qmail 39552 invoked by uid 1569); 25 Aug 2003 01:46:24 -0000 Date: 25 Aug 2003 01:46:24 -0000 Message-ID: <20030825014624.39551.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/24 18:46:24 Modified: modules/filters mod_include.c Log: keep the parse tree consistent if a binary operator occurs within parentheses. Revision Changes Path 1.261 +2 -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.260 retrieving revision 1.261 diff -u -r1.260 -r1.261 --- mod_include.c 25 Aug 2003 00:16:04 -0000 1.260 +++ mod_include.c 25 Aug 2003 01:46:24 -0000 1.261 @@ -1279,6 +1279,7 @@ } else { new->left = current->right; + new->left->parent = new; current->right = new; new->parent = current; } @@ -1373,6 +1374,7 @@ } else { new->left = current->right; + new->left->parent = new; current->right = new; new->parent = current; }