From dev-return-24047-apmail-apr-dev-archive=apr.apache.org@apr.apache.org Mon May 2 22:19:38 2011 Return-Path: X-Original-To: apmail-apr-dev-archive@www.apache.org Delivered-To: apmail-apr-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F2AAF3F38 for ; Mon, 2 May 2011 22:19:37 +0000 (UTC) Received: (qmail 91482 invoked by uid 500); 2 May 2011 22:19:37 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 91422 invoked by uid 500); 2 May 2011 22:19:37 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 91414 invoked by uid 99); 2 May 2011 22:19:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 May 2011 22:19:37 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of trawick@gmail.com designates 209.85.214.54 as permitted sender) Received: from [209.85.214.54] (HELO mail-bw0-f54.google.com) (209.85.214.54) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 May 2011 22:19:30 +0000 Received: by bwz12 with SMTP id 12so10264550bwz.27 for ; Mon, 02 May 2011 15:19:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=/Q1kd8HR+dkxThTgwnGGhkYi5vEEuXFBkFBoqk3qbA0=; b=G+qd9BdVkoJe0mE7KECmM6/Ju1RdbSvFWAGse0w+wlqZu+pCvl7V2vX9pcnw8IiPx6 qZ6nfPQLGj4SLuIiskDkdYhLZolR7ARzDv5xOM5V/RF8vdEGblO6F3H16DmtEuuK90mI dSNQhrzhvpGbezweeGsaqNo+u5hZmGPATfAAs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=LEXUSPbgIvIy5Ksg001Oju+/u8jEAusQI3Pmz70qZ69pfY69xnLcKd705apkhAeSQf Ub8A5mJ+u8Rg3ynb3Zv0yZrD4hy6EnCitb+a6XcpGunESu66TV5RlVggjCRq6UMI1OUO y49zWQgY4VUN4ZG8LLRYnJgTG4MqMdiNjJV9o= MIME-Version: 1.0 Received: by 10.205.24.12 with SMTP id rc12mr4448127bkb.199.1304374749920; Mon, 02 May 2011 15:19:09 -0700 (PDT) Received: by 10.204.80.34 with HTTP; Mon, 2 May 2011 15:19:09 -0700 (PDT) In-Reply-To: <4DBF268B.6030401@rowe-clan.net> References: <4DBF268B.6030401@rowe-clan.net> Date: Mon, 2 May 2011 18:19:09 -0400 Message-ID: Subject: Re: apr_fnmatch deltas From: Jeff Trawick To: dev@apr.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Index: strings/apr_fnmatch.c =================================================================== --- strings/apr_fnmatch.c (revision 1098800) +++ strings/apr_fnmatch.c (working copy) @@ -71,7 +71,7 @@ * Both pattern and string are **char to support pointer increment of arbitrary * multibyte characters for the given locale, in a later iteration of this code */ -static __inline int fnmatch_ch(const char **pattern, const char **string, int flags) +static APR_INLINE int fnmatch_ch(const char **pattern, const char **string, int flags) { const char * const mismatch = *pattern; const int nocase = !!(flags & APR_FNM_CASE_BLIND);