summaryrefslogtreecommitdiffstats
path: root/lib/resource.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-03-29 22:14:33 +0200
committerMartin Mares <mj@ucw.cz>1999-03-29 22:14:33 +0200
commit5bc512aa3a0d3e4ca378fff3316b75c131f17637 (patch)
tree1f7d48bab9c94313b58845412472e06b21c7f712 /lib/resource.c
parent3f2a21fd348e49cf3ca98750b14e14dd04b3209b (diff)
downloadbird-5bc512aa3a0d3e4ca378fff3316b75c131f17637.tar
bird-5bc512aa3a0d3e4ca378fff3316b75c131f17637.zip
Clarify resource dumps and include them in the main debugging dump.
Diffstat (limited to 'lib/resource.c')
-rw-r--r--lib/resource.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/resource.c b/lib/resource.c
index f2a0c77..ceaa0ad 100644
--- a/lib/resource.c
+++ b/lib/resource.c
@@ -37,6 +37,7 @@ pool *
rp_new(pool *p, char *name)
{
pool *z = ralloc(p, &pool_class);
+ z->name = name;
init_list(&z->inside);
return z;
}
@@ -62,7 +63,7 @@ pool_dump(resource *P)
pool *p = (pool *) P;
resource *r;
- debug(" %s\n", p->name);
+ debug("%s\n", p->name);
indent += 3;
WALK_LIST(r, p->inside)
rdump(r);
@@ -93,7 +94,7 @@ rdump(void *res)
debug(x, "", (int) r);
if (r)
{
- debug("%-6s", r->class->name);
+ debug("%s ", r->class->name);
r->class->dump(r);
}
else