]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fixed duplicity in log category numbering.
authorMartin Mares <mj@ucw.cz>
Tue, 20 Feb 2001 09:49:19 +0000 (09:49 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 20 Feb 2001 09:49:19 +0000 (09:49 +0000)
Thanks to Zheng Yuan for spotting this.

lib/birdlib.h

index 933e3d50adb33b8b3c5fb0e5325f6b7be6ff3e90..fc27db9b9070cacc6ada85228ec1eb4aa6f16142 100644 (file)
@@ -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 */