You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by pg...@apache.org on 2006/07/06 11:25:35 UTC

svn commit: r419498 - /perl/modperl/trunk/src/modules/perl/modperl_options.c

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);