diff --git a/apache/apache-lib.pl b/apache/apache-lib.pl index eee64440d..faba993b2 100755 --- a/apache/apache-lib.pl +++ b/apache/apache-lib.pl @@ -1730,7 +1730,6 @@ local $conf = &get_config(); foreach $l (&find_directive_struct("LoadModule", $conf)) { if ($l->{'words'}->[1] =~ /(mod_\S+)\.(so|dll)/ && -r "$module_root_directory/$1.pl") { - print STDERR $l->{'words'}->[1],"\n"; push(@rv, $1); } elsif ($l->{'words'}->[1] =~ /libssl\.so/ && diff --git a/apache/mod_ext_filter.pl b/apache/mod_ext_filter.pl index 9c024eb77..8ed0484d8 100755 --- a/apache/mod_ext_filter.pl +++ b/apache/mod_ext_filter.pl @@ -11,7 +11,6 @@ return &make_directives($rv, $_[0], "mod_ext_filter"); sub mod_ext_filter_filters { local($d, @rv); -print STDERR "looking for ExtFilterDefine\n"; foreach $d (&find_all_directives($_[0], "ExtFilterDefine")) { push(@rv, $d->{'words'}->[0]); }