(init_server): Move log_init() before the mobility_init() so its errors are logged

to the server log.
This commit is contained in:
Ron Koenderink 2007-03-05 02:40:18 +00:00
parent ead51d369e
commit c2d0528178

View file

@ -297,12 +297,12 @@ init_server(void)
io_init(); io_init();
init_nreport(); init_nreport();
loginit("server");
if (opt_MOB_ACCESS) { if (opt_MOB_ACCESS) {
/* This fixes up mobility upon restart */ /* This fixes up mobility upon restart */
mobility_init(); mobility_init();
} }
loginit("server");
} }
/* /*