From: Alan T. DeKok Date: Tue, 15 Mar 2011 16:23:22 +0000 (+0100) Subject: Fix compilation errors X-Git-Tag: release_2_1_11~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54604bf8d17df43acf072b5122e460c822112e97;p=thirdparty%2Ffreeradius-server.git Fix compilation errors --- diff --git a/src/main/modcall.c b/src/main/modcall.c index 02ce2ab5801..21ee747c924 100644 --- a/src/main/modcall.c +++ b/src/main/modcall.c @@ -850,24 +850,24 @@ static void dump_mc(modcallable *c, int indent) if(c->type==MOD_SINGLE) { modsingle *single = mod_callabletosingle(c); - RDEBUG("%.*s%s {", indent, "\t\t\t\t\t\t\t\t\t\t\t", + DEBUG("%.*s%s {", indent, "\t\t\t\t\t\t\t\t\t\t\t", single->modinst->name); } else { modgroup *g = mod_callabletogroup(c); modcallable *p; - RDEBUG("%.*s%s {", indent, "\t\t\t\t\t\t\t\t\t\t\t", + DEBUG("%.*s%s {", indent, "\t\t\t\t\t\t\t\t\t\t\t", group_name[c->type]); for(p = g->children;p;p = p->next) dump_mc(p, indent+1); } for(i = 0; iactions[i])); } - RDEBUG("%.*s}", indent, "\t\t\t\t\t\t\t\t\t\t\t"); + DEBUG("%.*s}", indent, "\t\t\t\t\t\t\t\t\t\t\t"); } static void dump_tree(int comp, modcallable *c)