]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Properly initialize filters. Also bumped version to 0.0.0 as it
authorPavel Machek <pavel@ucw.cz>
Fri, 15 Jan 1999 14:40:50 +0000 (14:40 +0000)
committerPavel Machek <pavel@ucw.cz>
Fri, 15 Jan 1999 14:40:50 +0000 (14:40 +0000)
actually does something.

sysdep/unix/main.c

index a2b33180746dd797969ce0daee315f0500b17fb9..cb7bf3d33bcfffe56b2c8e18291a5980d852779e 100644 (file)
@@ -19,6 +19,7 @@
 #include "nest/protocol.h"
 #include "nest/iface.h"
 #include "conf/conf.h"
+#include "conf/filter.h"
 
 #include "unix.h"
 #include "krt.h"
@@ -84,7 +85,6 @@ read_config(void)
   cf_parse();
   protos_postconfig();
 }
-
 /*
  *     Hic Est main()
  */
@@ -92,7 +92,7 @@ read_config(void)
 int
 main(void)
 {
-  log(L_INFO "Launching BIRD -1.-1-pre-omega...");
+  log(L_INFO "Launching BIRD 0.0.0...");
 
   log_init_debug(NULL);
 
@@ -108,6 +108,7 @@ main(void)
 
   debug("Reading configuration file.\n");
   read_config();
+  filters_init();
 
   signal_init();