Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 24427 invoked from network); 5 Feb 2011 05:20:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 Feb 2011 05:20:13 -0000 Received: (qmail 37781 invoked by uid 500); 5 Feb 2011 05:20:13 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 37738 invoked by uid 500); 5 Feb 2011 05:20:11 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: apreq-dev@httpd.apache.org List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 37726 invoked by uid 99); 5 Feb 2011 05:20:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Feb 2011 05:20:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Feb 2011 05:20:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7F7ED2388900; Sat, 5 Feb 2011 05:19:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1067392 - /httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm Date: Sat, 05 Feb 2011 05:19:50 -0000 To: apreq-cvs@httpd.apache.org From: joes@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110205051950.7F7ED2388900@eris.apache.org> Author: joes Date: Sat Feb 5 05:19:49 2011 New Revision: 1067392 URL: http://svn.apache.org/viewvc?rev=1067392&view=rev Log: bugs Modified: httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm Modified: httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm?rev=1067392&r1=1067391&r2=1067392&view=diff ============================================================================== --- httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm (original) +++ httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm Sat Feb 5 05:19:49 2011 @@ -5,14 +5,14 @@ if ($@) { require APR::Request::CGI; require APR::Pool; base->import("APR::Pool"); - *handle = *APR::Request::CGI::handle; - *new = sub { bless APR::Pool->new, shift; }; + *handle = sub { APR::Request::CGI->handle(@_) }; + *new = sub { bless APR::Pool->new, shift }; return 1; } require Apache2::RequestRec; require Apache2::RequestUtil; base->import("Apache2::RequestRec"); -*handle = *APR::Request::Apache2::handle; -*new = sub { bless Apache2::RequestUtil->request, shift; } +*handle = sub { APR::Request::Apache2->handle(@_) }; +*new = sub { bless Apache2::RequestUtil->request, shift }; 1;