int vty_port = RIPNG_VTY_PORT;
int daemon_mode = 0;
char *progname;
- struct thread thread;
int dryrun = 0;
/* Set umask before anything for security */
zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
/* Fetch next active thread. */
- while (thread_fetch (master, &thread))
- thread_call (&thread);
+ thread_main (master);
/* Not reached. */
return 0;