From 09cb02f798bc1d7a02fd1d6a348358506ae87f77 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 7 Feb 2011 02:13:41 +0100 Subject: [PATCH] remove some verbosity from the ubus example --- ubus-example.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/ubus-example.c b/ubus-example.c index 9e1b1d9..bac7bdd 100644 --- a/ubus-example.c +++ b/ubus-example.c @@ -95,25 +95,14 @@ int main(int argc, char **argv) return -1; } - fprintf(stderr, "Connected as ID 0x%08x\n", ctx->local_id); - - fprintf(stderr, "Publishing object\n"); ret = ubus_add_object(ctx, &test_object); if (ret) fprintf(stderr, "Failed to add_object object: %s\n", ubus_strerror(ret)); - else { - fprintf(stderr, "Object ID: %08x\n", test_object.id); - fprintf(stderr, "Object Type ID: %08x\n", test_object.type->id); - } - fprintf(stderr, "Publishing object\n"); ret = ubus_add_object(ctx, &test_object2); if (ret) fprintf(stderr, "Failed to add_object object: %s\n", ubus_strerror(ret)); - else { - fprintf(stderr, "Object ID: %08x\n", test_object2.id); - fprintf(stderr, "Object Type ID: %08x\n", test_object2.type->id); - } + uloop_init(); ubus_add_uloop(ctx); uloop_run(); -- 2.11.0