dougm 01/03/15 18:29:43
Modified: lib/ModPerl FunctionMap.pm
Log:
since calling of guess_prefix() moved, need to make sure
ModPerl::FunctionMap->prefixes pick up ap_ and apr_
Revision Changes Path
1.4 +2 -0 modperl-2.0/lib/ModPerl/FunctionMap.pm
Index: FunctionMap.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/ModPerl/FunctionMap.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- FunctionMap.pm 2001/03/15 23:59:45 1.3
+++ FunctionMap.pm 2001/03/16 02:29:41 1.4
@@ -169,6 +169,8 @@
$prefix{ $ent->{prefix} }++;
}
+ $prefix{$_} = 1 for qw(ap_ apr_); #make sure we get these
+
[keys %prefix]
}