Fix compilation errors
authorAlan T. DeKok <aland@freeradius.org>
Tue, 15 Mar 2011 16:23:22 +0000 (17:23 +0100)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 15 Mar 2011 16:23:22 +0000 (17:23 +0100)
src/main/modcall.c

index 02ce2ab..21ee747 100644 (file)
@@ -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; i<RLM_MODULE_NUMCODES; ++i) {
-               RDEBUG("%.*s%s = %s", indent+1, "\t\t\t\t\t\t\t\t\t\t\t",
+               DEBUG("%.*s%s = %s", indent+1, "\t\t\t\t\t\t\t\t\t\t\t",
                      fr_int2str(rcode_table, i, "??"),
                      action2str(c->actions[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)