From 63826fe9b081776c48dcdefcf7735abaa950ee80 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Tue, 16 Sep 2014 21:58:10 -0700 Subject: [PATCH] Remove debug code --- apache/apache-lib.pl | 1 - apache/mod_ext_filter.pl | 1 - 2 files changed, 2 deletions(-) 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]); }