service: dump respawn params in the same order as when passed in.
[project/procd.git] / service / watch.c
index 0d2d9e0ba9f8c49727f37f825f276a1e0e6801eb..65e1fec9672d595d4b22e03088eeb0efb98f0ae0 100644 (file)
@@ -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");
 }