diff options
author | Martin Mares <mj@ucw.cz> | 1998-10-14 15:38:17 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-10-14 15:38:17 +0200 |
commit | 93f1c532e99cddb5575075313c0707bcd4758f07 (patch) | |
tree | 0b2cfc44f7f2e5957fb89da037bf57f244e59729 /sysdep/unix/main.c | |
parent | cf3934c5691ec4a00d54b863576916f9a1dd1f1a (diff) | |
download | bird-93f1c532e99cddb5575075313c0707bcd4758f07.tar bird-93f1c532e99cddb5575075313c0707bcd4758f07.zip |
Moved scanning of interfaces, so that they get initialized after all
routing protocol instances.
Diffstat (limited to 'sysdep/unix/main.c')
-rw-r--r-- | sysdep/unix/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 8850bbf..ce3768c 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -80,12 +80,12 @@ main(void) protos_preconfig(); protos_postconfig(); - scan_if_init(); - signal_init(); protos_start(); + scan_if_init(); + handle_sigusr(0); debug("Entering I/O loop.\n"); |