From: John Crispin Date: Thu, 13 Jun 2013 12:48:04 +0000 (+0200) Subject: register the system namespace on ubus regardless of the pid X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=9794bc56af7a25be5a4ce06f7ab6aea1a11c6cf3 register the system namespace on ubus regardless of the pid Signed-off-by: John Crispin --- diff --git a/ubus.c b/ubus.c index 216cc16..202646a 100644 --- a/ubus.c +++ b/ubus.c @@ -77,10 +77,9 @@ static void procd_ubus_try_connect(void) ctx->connection_lost = procd_ubus_connection_lost; ubus_connected = true; ubus_init_service(ctx); - if (getpid() == 1) { + ubus_init_system(ctx); + if (getpid() == 1) ubus_init_log(ctx); - ubus_init_system(ctx); - } } static void procd_ubus_connection_lost(struct ubus_context *old_ctx)