Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 92A80D146 for ; Thu, 2 Aug 2012 13:10:16 +0000 (UTC) Received: (qmail 36727 invoked by uid 500); 2 Aug 2012 13:10:16 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 36672 invoked by uid 500); 2 Aug 2012 13:10:16 -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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 36664 invoked by uid 99); 2 Aug 2012 13:10:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2012 13:10:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2012 13:10:14 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BD89A23888E4; Thu, 2 Aug 2012 13:09:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1368453 - in /httpd/httpd/branches/2.4.x: ./ STATUS include/httpd.h Date: Thu, 02 Aug 2012 13:09:30 -0000 To: cvs@httpd.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120802130930.BD89A23888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Thu Aug 2 13:09:30 2012 New Revision: 1368453 URL: http://svn.apache.org/viewvc?rev=1368453&view=rev Log: Merge r1366319 from trunk: ap_str(case)cmp_match returns the opposite of what is advertized in the header. Submitted by: humbedooh Reviewed/backported by: jim Modified: httpd/httpd/branches/2.4.x/ (props changed) httpd/httpd/branches/2.4.x/STATUS httpd/httpd/branches/2.4.x/include/httpd.h Propchange: httpd/httpd/branches/2.4.x/ ------------------------------------------------------------------------------ Merged /httpd/httpd/trunk:r1366319 Modified: httpd/httpd/branches/2.4.x/STATUS URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/STATUS?rev=1368453&r1=1368452&r2=1368453&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/STATUS (original) +++ httpd/httpd/branches/2.4.x/STATUS Thu Aug 2 13:09:30 2012 @@ -88,11 +88,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] - * headers: ap_str(case)cmp_match returns the opposite of what is advertized - in the header. - trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1366319 - 2.4.x patch: Trunk patch applies. - +1: rjung, humbedooh, jim PATCHES PROPOSED TO BACKPORT FROM TRUNK: [ New proposals should be added at the end of the list ] Modified: httpd/httpd/branches/2.4.x/include/httpd.h URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/include/httpd.h?rev=1368453&r1=1368452&r2=1368453&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/include/httpd.h (original) +++ httpd/httpd/branches/2.4.x/include/httpd.h Thu Aug 2 13:09:30 2012 @@ -1722,7 +1722,7 @@ AP_DECLARE(int) ap_is_matchexp(const cha * Determine if a string matches a patterm containing the wildcards '?' or '*' * @param str The string to check * @param expected The pattern to match against - * @return 1 if the two strings match, 0 otherwise + * @return 0 if the two strings match, 1 otherwise */ AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected); @@ -1731,7 +1731,7 @@ AP_DECLARE(int) ap_strcmp_match(const ch * ignoring case * @param str The string to check * @param expected The pattern to match against - * @return 1 if the two strings match, 0 otherwise + * @return 0 if the two strings match, 1 otherwise */ AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *expected);