From: John Crispin Date: Wed, 4 Sep 2013 15:32:15 +0000 (+0200) Subject: fix skewed parameter order in respawn code X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=6053eeb3d904516da7e8bcda314f6a37a604f024 fix skewed parameter order in respawn code Signed-off-by: John Crispin --- diff --git a/instance.c b/instance.c index 4230d0d..7895a04 100644 --- a/instance.c +++ b/instance.c @@ -334,8 +334,8 @@ instance_config_parse(struct service_instance *in) } in->respawn = true; in->respawn_count = 0; - in->respawn_timeout = vals[0]; - in->respawn_threshold = vals[1]; + in->respawn_threshold = vals[0]; + in->respawn_timeout = vals[1]; in->respawn_retry = vals[2]; } if (tb[INSTANCE_ATTR_TRIGGER]) {