fix timeout on shutdown
authorJohn Crispin <blogic@openwrt.org>
Sat, 13 Sep 2014 01:07:48 +0000 (03:07 +0200)
committerJohn Crispin <blogic@openwrt.org>
Sat, 13 Sep 2014 01:17:24 +0000 (03:17 +0200)
Signed-off-by: John Crispin <blogic@openwrt.org>
rcS.c

diff --git a/rcS.c b/rcS.c
index 0e1b0ba..4545621 100644 (file)
--- a/rcS.c
+++ b/rcS.c
@@ -114,7 +114,7 @@ static void add_initd(struct runqueue *q, char *file, char *param)
        s = calloc_a(sizeof(*s), &f, strlen(file) + 1, &p, strlen(param) + 1);
        s->proc.task.type = &initd_type;
        s->proc.task.complete = q_initd_complete;
-       if (!strcmp(param, "stop"))
+       if (!strcmp(param, "stop") || !strcmp(param, "shutdown"))
                s->proc.task.run_timeout = 15000;
        s->param = p;
        s->file = f;