diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-12 21:01:38 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-12 21:01:38 +0000 |
commit | 6b9fa320806ce8a734d865ebcb8052ba0e50c527 (patch) | |
tree | 29c22c36dd94eb3960fc6066ceac3a12bd1d3d46 /nest/rt-table.c | |
parent | 6a9f28b0b9254ba21c36126d6f10388815840001 (diff) |
Great cleanup of debug messages. LOCAL_DEBUG turned off in most modules,
several debug() calls converted to DBG().
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r-- | nest/rt-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index 7d992aa7..f255a05e 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -8,7 +8,7 @@ #include <string.h> -#define LOCAL_DEBUG +#undef LOCAL_DEBUG #include "nest/bird.h" #include "nest/route.h" @@ -196,7 +196,7 @@ rt_feed_baby(struct proto *p) if (!p->ahooks) return; - debug("Announcing routes to new protocol %s\n", p->name); + DBG("Announcing routes to new protocol %s\n", p->name); for(h=p->ahooks; h; h=h->next) { rtable *t = h->table; |