Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 74163 invoked by uid 500); 24 Jul 2003 20:50:52 -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 74132 invoked by uid 500); 24 Jul 2003 20:50:52 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 24 Jul 2003 20:50:51 -0000 Message-ID: <20030724205051.23767.qmail@icarus.apache.org> From: nd@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/mappers mod_rewrite.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N nd 2003/07/24 13:50:51 Modified: modules/mappers mod_rewrite.c Log: remove useless post increment. Revision Changes Path 1.173 +1 -1 httpd-2.0/modules/mappers/mod_rewrite.c Index: mod_rewrite.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_rewrite.c,v retrieving revision 1.172 retrieving revision 1.173 diff -u -r1.172 -r1.173 --- mod_rewrite.c 24 Jul 2003 20:29:19 -0000 1.172 +++ mod_rewrite.c 24 Jul 2003 20:50:50 -0000 1.173 @@ -4345,7 +4345,7 @@ CHECK_QUOTATION(cp, isquoted); *a3 = cp; DETERMINE_NEXTSTRING(cp, isquoted); - *cp++ = '\0'; + *cp = '\0'; return 0; }