diff options
Diffstat (limited to 'src/odhcpd.c')
-rw-r--r-- | src/odhcpd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/odhcpd.c b/src/odhcpd.c index f59d5a8..259b623 100644 --- a/src/odhcpd.c +++ b/src/odhcpd.c @@ -108,16 +108,16 @@ int main(int argc, char **argv) signal(SIGINT, sighandler); signal(SIGTERM, sighandler); - if (init_router()) + if (router_init()) return 4; - if (init_dhcpv6()) + if (dhcpv6_init()) return 4; - if (init_ndp()) + if (ndp_init()) return 4; - if (init_dhcpv4()) + if (dhcpv4_init()) return 4; odhcpd_run(); |