X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=rcS.c;h=45456215af023d67edb10ed715ec296f3f9a250b;hp=0e1b0ba979b0a0a79f1ac907dc0b5e2791edc733;hb=f45672d80bf2fec4ccb7363de1da6adb9e3f4421;hpb=7a9cbcd88b6cf3c0cbee6d4f76c2adaedc54058d diff --git a/rcS.c b/rcS.c index 0e1b0ba..4545621 100644 --- 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;