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 A696118BE4 for ; Sat, 21 Nov 2015 22:52:14 +0000 (UTC) Received: (qmail 88139 invoked by uid 500); 21 Nov 2015 22:52:14 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 88073 invoked by uid 500); 21 Nov 2015 22:52:14 -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 88064 invoked by uid 99); 21 Nov 2015 22:52:14 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Nov 2015 22:52:14 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 0759AC048F for ; Sat, 21 Nov 2015 22:52:14 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.446 X-Spam-Level: X-Spam-Status: No, score=0.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id Rash8uJbYUrL for ; Sat, 21 Nov 2015 22:52:13 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTP id A17AF207E3 for ; Sat, 21 Nov 2015 22:52:12 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 8A359E00B6 for ; Sat, 21 Nov 2015 22:52:11 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id F2CB33A0046 for ; Sat, 21 Nov 2015 22:52:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1715587 - /httpd/httpd/trunk/server/util.c Date: Sat, 21 Nov 2015 22:52:10 -0000 To: cvs@httpd.apache.org From: covener@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151121225210.F2CB33A0046@svn01-us-west.apache.org> Author: covener Date: Sat Nov 21 22:52:10 2015 New Revision: 1715587 URL: http://svn.apache.org/viewvc?rev=1715587&view=rev Log: revert until these functions are used. Modified: httpd/httpd/trunk/server/util.c Modified: httpd/httpd/trunk/server/util.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util.c?rev=1715587&r1=1715586&r2=1715587&view=diff ============================================================================== --- httpd/httpd/trunk/server/util.c (original) +++ httpd/httpd/trunk/server/util.c Sat Nov 21 22:52:10 2015 @@ -3172,7 +3172,6 @@ AP_DECLARE(int) ap_array_str_contains(co return (ap_array_str_index(array, s, 0) >= 0); } -#if !APR_CHARSET_EBCDIC /* * Provide our own known-fast implementation of str[n]casecmp() * NOTE: ASCII only! @@ -3239,14 +3238,3 @@ AP_DECLARE(int) ap_strncasecmp(const cha } return (0); } -#else -AP_DECLARE(int) ap_strcasecmp(const char *s1, const char *s2) -{ - return strcasecmp(s1, s2); -} - -AP_DECLARE(int) ap_strncasecmp(const char *s1, const char *s2, apr_size_t n) -{ - return strncasecmp(s1, s2, n); -} -#endif /*APR_CHARSET_EBCDIC*/