X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=service%2Fwatch.c;h=65e1fec9672d595d4b22e03088eeb0efb98f0ae0;hp=0d2d9e0ba9f8c49727f37f825f276a1e0e6801eb;hb=a9ee0b693ebce775ab7a56fd09c92f98076fe559;hpb=8d8e22733caa9b254048c6d2b2ab15dc6b1af3c0 diff --git a/service/watch.c b/service/watch.c index 0d2d9e0..65e1fec 100644 --- a/service/watch.c +++ b/service/watch.c @@ -65,7 +65,7 @@ static void watch_subscribe_cb(struct ubus_context *ctx, struct ubus_event_handl continue; if (!ubus_subscribe(ctx, &watch_subscribe, id)) return; - ERROR("failed to suscribe %d\n", id); + ERROR("failed to subscribe %d\n", id); } } @@ -117,8 +117,8 @@ watch_ubus(struct ubus_context *ctx) { watch_event.cb = watch_subscribe_cb; watch_subscribe.cb = watch_notify_cb; - if (ubus_register_event_handler(ctx, &watch_event, "ubus.object.add")) - ERROR("failed to add ubus event handler\n"); if (ubus_register_subscriber(ctx, &watch_subscribe)) ERROR("failed to register ubus subscriber\n"); + if (ubus_register_event_handler(ctx, &watch_event, "ubus.object.add")) + ERROR("failed to add ubus event handler\n"); }