jorton 2003/07/28 08:10:25
Modified: perl-framework/t/modules info.t
Log:
Fix for mod_ldap.
Revision Changes Path
1.4 +4 -2 httpd-test/perl-framework/t/modules/info.t
Index: info.t
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/t/modules/info.t,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -u -r1.3 -r1.4
--- info.t 18 Sep 2001 15:41:03 -0000 1.3
+++ info.t 28 Jul 2003 15:10:25 -0000 1.4
@@ -21,9 +21,11 @@
if ($_ =~ /<a name=\"(\w+\.c)\">/) {
if ($1 eq 'sapi_apache2.c') { # why does php do this?
push(@actual,'mod_php4.c');
- next;
+ } elsif ($1 eq 'util_ldap.c') {
+ push(@actual,'mod_ldap.c');
+ } else {
+ push(@actual, $1);
}
- push(@actual, $1)
}
}