1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Renamed DEBUG' symbol to DEBUGGING' to prevent collisions with token

names and include files.
This commit is contained in:
Martin Mares
1998-11-29 14:38:34 +00:00
parent 7af99789c7
commit 0cf86f0fc3
3 changed files with 3 additions and 3 deletions

View File

@@ -105,7 +105,7 @@ fib_get(struct fib *f, ip_addr *a, int len)
e = e->next;
if (e)
return e;
#ifdef DEBUG
#ifdef DEBUGGING
if (len < 0 || len > BITS_PER_IP_ADDRESS || !ip_is_prefix(*a,len))
die("fib_get() called for invalid address");
#endif