diff options
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/main.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/zebra/main.c b/zebra/main.c index 3aa40fa92..7177fe329 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -219,7 +219,6 @@ int main (int argc, char **argv) { // int batch_mode = 0; - struct thread thread; char *zserv_path = NULL; char *fpm_format = NULL; @@ -360,13 +359,7 @@ main (int argc, char **argv) /* This must be done only after locking pidfile (bug #403). */ zebra_zserv_socket_init (zserv_path); - frr_vty_serv (); - - /* Print banner. */ - zlog_notice ("Zebra %s starting: vty@%d", FRR_VERSION, zebra_di.vty_port); - - while (thread_fetch (zebrad.master, &thread)) - thread_call (&thread); + frr_run (zebrad.master); /* Not reached... */ return 0; |