Author: pgollucci Date: Fri Aug 25 23:11:35 2006 New Revision: 437093 URL: http://svn.apache.org/viewvc?rev=437093&view=rev Log: fix cut and paste error
Modified: perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm Modified: perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm?rev=437093&r1=437092&r2=437093&view=diff ============================================================================== --- perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm (original) +++ perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm Fri Aug 25 23:11:35 2006 @@ -74,7 +74,7 @@ # PerlCleanupHandler phase. That means that there's no way to use # $r->get_handlers() to check the results of calling this method. # $r->get_handlers() SEGFAULTS at the moment in 2.x - $r->pool->cleanup_register(\&exit_if_too_big, $r); + $r->pool->cleanup_register(\&_exit_if_too_big, $r); $r->pnotes(size_limit_cleanup => 1); }