summaryrefslogtreecommitdiffstats
path: root/nest/rt-dev.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-03-12 22:01:38 +0100
committerMartin Mares <mj@ucw.cz>2000-03-12 22:01:38 +0100
commit6b9fa320806ce8a734d865ebcb8052ba0e50c527 (patch)
tree29c22c36dd94eb3960fc6066ceac3a12bd1d3d46 /nest/rt-dev.c
parent6a9f28b0b9254ba21c36126d6f10388815840001 (diff)
downloadbird-6b9fa320806ce8a734d865ebcb8052ba0e50c527.tar
bird-6b9fa320806ce8a734d865ebcb8052ba0e50c527.zip
Great cleanup of debug messages. LOCAL_DEBUG turned off in most modules,
several debug() calls converted to DBG().
Diffstat (limited to 'nest/rt-dev.c')
-rw-r--r--nest/rt-dev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nest/rt-dev.c b/nest/rt-dev.c
index edadeba..d42ed15 100644
--- a/nest/rt-dev.c
+++ b/nest/rt-dev.c
@@ -6,7 +6,7 @@
* Can be freely distributed and used under the terms of the GNU GPL.
*/
-#define LOCAL_DEBUG
+#undef LOCAL_DEBUG
#include <string.h>
@@ -35,7 +35,7 @@ dev_ifa_notify(struct proto *p, unsigned c, struct ifa *ad)
n = net_find(p->table, ad->prefix, ad->pxlen);
if (!n)
{
- debug("dev_if_notify: device shutdown: prefix not found\n");
+ DBG("dev_if_notify: device shutdown: prefix not found\n");
return;
}
rte_update(p->table, n, p, NULL);
@@ -46,7 +46,7 @@ dev_ifa_notify(struct proto *p, unsigned c, struct ifa *ad)
net *n;
rte *e;
- debug("dev_if_notify: %s:%I going up\n", ad->iface->name, ad->ip);
+ DBG("dev_if_notify: %s:%I going up\n", ad->iface->name, ad->ip);
bzero(&A, sizeof(A));
A.proto = p;
A.source = RTS_DEVICE;