diff options
author | Martin Mares <mj@ucw.cz> | 2001-02-20 10:49:19 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2001-02-20 10:49:19 +0100 |
commit | 27e993fb4ecc310a83da3a74b21b15c32c207a09 (patch) | |
tree | bea958ae2765f36b719e0a86ab9a635add1f4618 | |
parent | 4d04187465fdeb3fb755b4d01ec640bbe0e36eb9 (diff) | |
download | bird-27e993fb4ecc310a83da3a74b21b15c32c207a09.tar bird-27e993fb4ecc310a83da3a74b21b15c32c207a09.zip |
Fixed duplicity in log category numbering.
Thanks to Zheng Yuan for spotting this.
-rw-r--r-- | lib/birdlib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/birdlib.h b/lib/birdlib.h index 933e3d5..fc27db9 100644 --- a/lib/birdlib.h +++ b/lib/birdlib.h @@ -39,11 +39,11 @@ void bug(char *msg, ...) NORET; #define L_TRACE "\002" /* Protocol tracing */ #define L_INFO "\003" /* Informational messages */ #define L_REMOTE "\004" /* Remote protocol errors */ -#define L_WARN "\004" /* Local warnings */ -#define L_ERR "\005" /* Local errors */ -#define L_AUTH "\006" /* Authorization failed etc. */ -#define L_FATAL "\007" /* Fatal errors */ -#define L_BUG "\010" /* BIRD bugs */ +#define L_WARN "\005" /* Local warnings */ +#define L_ERR "\006" /* Local errors */ +#define L_AUTH "\007" /* Authorization failed etc. */ +#define L_FATAL "\010" /* Fatal errors */ +#define L_BUG "\011" /* BIRD bugs */ void debug(char *msg, ...); /* Printf to debug output */ |