summaryrefslogtreecommitdiffstats
path: root/lib/birdlib.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-05-26 23:36:17 +0200
committerMartin Mares <mj@ucw.cz>1998-05-26 23:36:17 +0200
commit5222c46ceb8035f2292c3a91f6ee85fbbed82c5e (patch)
treeb20ce93d8402a37460ef8fce7ea20f4271317746 /lib/birdlib.h
parentd804db0dabf944495071fe6b62a9d836f78997af (diff)
downloadbird-5222c46ceb8035f2292c3a91f6ee85fbbed82c5e.tar
bird-5222c46ceb8035f2292c3a91f6ee85fbbed82c5e.zip
DBG now calls debug() instead of sending it to log().
Diffstat (limited to 'lib/birdlib.h')
-rw-r--r--lib/birdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/birdlib.h b/lib/birdlib.h
index 842fce8..9696f9d 100644
--- a/lib/birdlib.h
+++ b/lib/birdlib.h
@@ -39,7 +39,7 @@ void debug(char *msg, ...); /* Printf to debug output */
/* Debugging */
#ifdef LOCAL_DEBUG
-#define DBG(x, y...) log(L_DEBUG x, ##y)
+#define DBG(x, y...) debug(x, ##y)
#else
#define DBG(x, y...)
#endif