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 st...@apache.org on 2005/03/04 03:13:22 UTC

svn commit: r156122 - perl/modperl/trunk/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm

Author: stas
Date: Thu Mar  3 18:13:19 2005
New Revision: 156122

URL: http://svn.apache.org/viewcvs?view=rev&rev=156122
Log:
missing ;

Modified:
    perl/modperl/trunk/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm

Modified: perl/modperl/trunk/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm?view=diff&r1=156121&r2=156122
==============================================================================
--- perl/modperl/trunk/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm (original)
+++ perl/modperl/trunk/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm Thu Mar  3 18:13:19 2005
@@ -542,7 +542,7 @@
 
         if (ref $@ eq 'APR::Error') {
             return Apache::FORBIDDEN if $@ == APR::EACCES;
-            return Apache::NOT_FOUND if $@ == APR::ENOENT
+            return Apache::NOT_FOUND if $@ == APR::ENOENT;
         }
         else {
             return Apache::SERVER_ERROR;