summaryrefslogtreecommitdiffstats
path: root/modules/debugging
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2010-06-06 18:59:50 +0200
committerStefan Fritsch <sf@apache.org>2010-06-06 18:59:50 +0200
commitebb62867fb8a335f70c30e01280cc30f5c4d0597 (patch)
tree29aeee2174a4d451a238e5774296194856db7aaf /modules/debugging
parentFix some modules to make them compile with per-module loglevels. (diff)
downloadapache2-ebb62867fb8a335f70c30e01280cc30f5c4d0597.tar.xz
apache2-ebb62867fb8a335f70c30e01280cc30f5c4d0597.zip
Use the new APLOG_USE_MODULE/AP_DECLARE_MODULE macros everywhere to take
advantage of per-module loglevels git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@951895 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/debugging')
-rw-r--r--modules/debugging/mod_bucketeer.c2
-rw-r--r--modules/debugging/mod_dumpio.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/debugging/mod_bucketeer.c b/modules/debugging/mod_bucketeer.c
index ff6f5ebd49..4142cbe22e 100644
--- a/modules/debugging/mod_bucketeer.c
+++ b/modules/debugging/mod_bucketeer.c
@@ -176,7 +176,7 @@ static const command_rec bucketeer_filter_cmds[] = {
{NULL}
};
-module AP_MODULE_DECLARE_DATA bucketeer_module = {
+AP_DECLARE_MODULE(bucketeer) = {
STANDARD20_MODULE_STUFF,
NULL,
NULL,
diff --git a/modules/debugging/mod_dumpio.c b/modules/debugging/mod_dumpio.c
index 04ccde01b3..d8d8c2e63d 100644
--- a/modules/debugging/mod_dumpio.c
+++ b/modules/debugging/mod_dumpio.c
@@ -266,7 +266,7 @@ static const command_rec dumpio_cmds[] = {
{ NULL }
};
-module AP_MODULE_DECLARE_DATA dumpio_module = {
+AP_DECLARE_MODULE(dumpio) = {
STANDARD20_MODULE_STUFF,
NULL,
NULL,