dougm 00/05/23 11:45:09
Modified: . Changes
lib/Apache Resource.pm
Log:
Apache::Resource was not converting PERL_RLIMIT_AS to MB values
Revision Changes Path
1.491 +3 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.490
retrieving revision 1.491
diff -u -r1.490 -r1.491
--- Changes 2000/05/23 18:15:45 1.490
+++ Changes 2000/05/23 18:45:07 1.491
@@ -10,6 +10,9 @@
=item 1.24_01-dev
+Apache::Resource was not converting PERL_RLIMIT_AS to MB values
+thanks to Ian Kallen for the spot
+
fix unescape_url_info() when url is undef or "",
thanks to Kenneth Lee for the spot
1.10 +1 -1 modperl/lib/Apache/Resource.pm
Index: Resource.pm
===================================================================
RCS file: /home/cvs/modperl/lib/Apache/Resource.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- Resource.pm 2000/03/23 04:48:56 1.9
+++ Resource.pm 2000/05/23 18:45:09 1.10
@@ -26,7 +26,7 @@
sub DEFAULT_RLIMIT_FSIZE () { 10 } #file size (MB)
sub DEFAULT_RLIMIT_STACK () { 20 } #stack size (MB)
-my %is_mb = map {$_,1} qw{DATA RSS STACK FSIZE CORE MEMLOCK};
+my %is_mb = map {$_,1} qw{DATA RSS STACK FSIZE CORE MEMLOCK AS};
sub debug { print STDERR @_ if $Debug }