From 93f1c532e99cddb5575075313c0707bcd4758f07 Mon Sep 17 00:00:00 2001
From: Martin Mares <mj@ucw.cz>
Date: Wed, 14 Oct 1998 13:38:17 +0000
Subject: [PATCH] Moved scanning of interfaces, so that they get initialized
 after all routing protocol instances.

---
 sysdep/unix/main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c
index 8850bbf7..ce3768c2 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");