Author: stas Date: Wed Apr 6 08:29:24 2005 New Revision: 160303 URL: http://svn.apache.org/viewcvs?view=rev&rev=160303 Log: s/Apache::OK/Apache2::Const::OK/ thanks geoff
Modified: perl/modperl/trunk/lib/Apache2/Reload.pm Modified: perl/modperl/trunk/lib/Apache2/Reload.pm URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/Apache2/Reload.pm?view=diff&r1=160302&r2=160303 ============================================================================== --- perl/modperl/trunk/lib/Apache2/Reload.pm (original) +++ perl/modperl/trunk/lib/Apache2/Reload.pm Wed Apr 6 08:29:24 2005 @@ -95,8 +95,8 @@ if ($TouchFile) { warn "Checking mtime of $TouchFile\n" if $DEBUG; - my $touch_mtime = (stat $TouchFile)[9] || return Apache::OK; - return Apache::OK unless $touch_mtime > $TouchTime; + my $touch_mtime = (stat $TouchFile)[9] || return Apache2::Const::OK; + return Apache2::Const::OK unless $touch_mtime > $TouchTime; $TouchTime = $touch_mtime; open my $fh, $TouchFile or die "Can't open '$TouchFile': $!"; $TouchModules = <$fh>;