Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 41126 invoked from network); 6 Jul 2006 09:25:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Jul 2006 09:25:56 -0000 Received: (qmail 2192 invoked by uid 500); 6 Jul 2006 09:25:56 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 2119 invoked by uid 500); 6 Jul 2006 09:25:56 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@perl.apache.org List-Id: Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 2108 invoked by uid 99); 6 Jul 2006 09:25:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Jul 2006 02:25:56 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Jul 2006 02:25:55 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 6696F1A981A; Thu, 6 Jul 2006 02:25:35 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r419498 - /perl/modperl/trunk/src/modules/perl/modperl_options.c Date: Thu, 06 Jul 2006 09:25:35 -0000 To: modperl-cvs@perl.apache.org From: pgollucci@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060706092535.6696F1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: pgollucci Date: Thu Jul 6 02:25:34 2006 New Revision: 419498 URL: http://svn.apache.org/viewvc?rev=419498&view=rev Log: s/!=/==/ to fix fat fingers Modified: perl/modperl/trunk/src/modules/perl/modperl_options.c Modified: perl/modperl/trunk/src/modules/perl/modperl_options.c URL: http://svn.apache.org/viewvc/perl/modperl/trunk/src/modules/perl/modperl_options.c?rev=419498&r1=419497&r2=419498&view=diff ============================================================================== --- perl/modperl/trunk/src/modules/perl/modperl_options.c (original) +++ perl/modperl/trunk/src/modules/perl/modperl_options.c Thu Jul 6 02:25:34 2006 @@ -79,7 +79,7 @@ modperl_options_t dummy; MpOptionsTypeSrv_set(&dummy); - if (flags_lookup(&dummy, str) != -1) { + if (flags_lookup(&dummy, str) == -1) { error = apr_pstrcat(p, error, " (only allowed per-server)", NULL);