summaryrefslogtreecommitdiffstats
path: root/sysdep
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-01-15 15:40:50 +0100
committerPavel Machek <pavel@ucw.cz>1999-01-15 15:40:50 +0100
commit41183888ee8addbd7887936e3b41974f5824d8ae (patch)
tree7e035d6cc1a0b763b3eff1acd99ae468b0e8051b /sysdep
parentcceb3e7d2fafcf3acee1db1d762ed697863b6f3b (diff)
downloadbird-41183888ee8addbd7887936e3b41974f5824d8ae.tar
bird-41183888ee8addbd7887936e3b41974f5824d8ae.zip
Properly initialize filters. Also bumped version to 0.0.0 as it
actually does something.
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/unix/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c
index a2b3318..cb7bf3d 100644
--- a/sysdep/unix/main.c
+++ b/sysdep/unix/main.c
@@ -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();