From: Steven Barth Date: Wed, 16 Oct 2013 17:01:22 +0000 (+0200) Subject: Loop until ubus connection succeeds X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=commitdiff_plain;h=132e49148b4808b3839757d4867e42be189199aa Loop until ubus connection succeeds --- diff --git a/src/config.c b/src/config.c index 06e5407..f008c12 100644 --- a/src/config.c +++ b/src/config.c @@ -612,7 +612,8 @@ void odhcpd_run(void) signal(SIGHUP, handle_signal); #ifdef WITH_UBUS - init_ubus(); + while (init_ubus()) + sleep(1); #endif odhcpd_reload();