Author: geoff Date: Wed Apr 6 06:57:54 2005 New Revision: 160293 URL: http://svn.apache.org/viewcvs?view=rev&rev=160293 Log: fix Apache::Server->warn implementation spot by stas
Modified: perl/modperl/trunk/lib/Apache2/compat.pm Modified: perl/modperl/trunk/lib/Apache2/compat.pm URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/Apache2/compat.pm?view=diff&r1=160292&r2=160293 ============================================================================== --- perl/modperl/trunk/lib/Apache2/compat.pm (original) +++ perl/modperl/trunk/lib/Apache2/compat.pm Wed Apr 6 06:57:54 2005 @@ -314,7 +314,7 @@ our $AddPerlVersion = 1; sub warn { - shift if @_ and $_[0] eq 'Apache2::Server'; + shift if @_ and $_[0] eq 'Apache::Server'; Apache2::ServerRec::warn(@_); }