From: John Crispin Date: Tue, 19 Nov 2013 14:48:37 +0000 (+0100) Subject: fix up the order of respawn parameters for ubus X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=bc5cdc15f4247dd0d42a636501c5787a6af13b98;p=project%2Fprocd.git fix up the order of respawn parameters for ubus Signed-off-by: John Crispin --- diff --git a/service/service.c b/service/service.c index 4153fec..d084371 100644 --- a/service/service.c +++ b/service/service.c @@ -446,9 +446,9 @@ service_start_early(char *name, char *cmdline) } blobmsg_close_array(&b, command); respawn = blobmsg_open_array(&b, "respawn"); - blobmsg_add_string(&b, NULL, "1"); blobmsg_add_string(&b, NULL, "3600"); - blobmsg_add_string(&b, NULL, "10"); + blobmsg_add_string(&b, NULL, "1"); + blobmsg_add_string(&b, NULL, "0"); blobmsg_close_array(&b, respawn); blobmsg_close_table(&b, instance); blobmsg_close_table(&b, instances);