diff options
author | paul <paul> | 2003-04-04 02:35:27 +0000 |
---|---|---|
committer | paul <paul> | 2003-04-04 02:35:27 +0000 |
commit | 81b3c9c636807877beaeed741ab8fef764959ab1 (patch) | |
tree | f79070fc938ed467c7e16f5a5bbd71e4b38f87f7 /ospfd/ospf_main.c | |
parent | ef43a3dc3618e2e7836a9bf76572a69d94c4b4fe (diff) | |
download | quagga-zebra_org_20030404.tar.bz2 quagga-zebra_org_20030404.tar.xz |
Import of Zebra CVS 20030404-03:35zebra_org_20030404
Diffstat (limited to 'ospfd/ospf_main.c')
-rw-r--r-- | ospfd/ospf_main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c index 82960b24..e649c17b 100644 --- a/ospfd/ospf_main.c +++ b/ospfd/ospf_main.c @@ -193,6 +193,9 @@ main (int argc, char **argv) zlog_default = openzlog (progname, ZLOG_NOLOG, ZLOG_OSPF, LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON); + /* OSPF master init. */ + ospf_master_init (); + while (1) { int opt; @@ -235,7 +238,7 @@ main (int argc, char **argv) } /* Initializations. */ - master = thread_master_create (); + master = om->master; /* Library inits. */ signal_init (); |