Author: gozer
Date: Fri Jul 22 16:31:15 2005
New Revision: 224421

URL: http://svn.apache.org/viewcvs?rev=224421&view=rev
Log:
Apache2::porting was still using Apache2->server instead of
the new Apache2::ServerUtil->server

Submitted-By: Bengt-Arne Fjellner <[EMAIL PROTECTED]>


Modified:
    perl/modperl/trunk/lib/Apache2/porting.pm

Modified: perl/modperl/trunk/lib/Apache2/porting.pm
URL: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/Apache2/porting.pm?rev=224421&r1=224420&r2=224421&view=diff
==============================================================================
--- perl/modperl/trunk/lib/Apache2/porting.pm (original)
+++ perl/modperl/trunk/lib/Apache2/porting.pm Fri Jul 22 16:31:15 2005
@@ -38,7 +38,8 @@
 # XXX: unfortunately it doesn't seem to be possible to install
 # *UNIVERSAL::AUTOLOAD at the server startup, httpd segfaults,
 # child_init seems to be the first stage where it works.
-Apache2->server->push_handlers(PerlChildInitHandler => \&porting_autoload);
+Apache2::ServerUtil->server->push_handlers(
+    PerlChildInitHandler => \&porting_autoload);
 
 sub porting_autoload {
     *UNIVERSAL::AUTOLOAD = sub {


Reply via email to