diff options
author | Martin Mares <mj@ucw.cz> | 1998-11-29 15:38:34 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-11-29 15:38:34 +0100 |
commit | 0cf86f0fc34c7daf020a9189279644af89e273a1 (patch) | |
tree | ba8b74026077fb02749bc6bfe0a9d60a2ea2db14 /nest | |
parent | 7af99789c78894fa2c7ffce3d7172d6a46c1c0e3 (diff) | |
download | bird-0cf86f0fc34c7daf020a9189279644af89e273a1.tar bird-0cf86f0fc34c7daf020a9189279644af89e273a1.zip |
Renamed `DEBUG' symbol to `DEBUGGING' to prevent collisions with token
names and include files.
Diffstat (limited to 'nest')
-rw-r--r-- | nest/rt-fib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-fib.c b/nest/rt-fib.c index 1522906..3840712 100644 --- a/nest/rt-fib.c +++ b/nest/rt-fib.c @@ -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 |