From b4104957b198b38aba609ed3889e7fa605012d19 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Wed, 1 Jul 2009 00:07:32 +0100 Subject: We should use -feature instead of nofeature. This matches the ifconfig and Gentoo USE flag syntax and is hopefully easier to read. Fixes #178. --- src/rc/runscript.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/rc/runscript.c') diff --git a/src/rc/runscript.c b/src/rc/runscript.c index 91a31a5..ca0d325 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -471,7 +471,8 @@ svc_wait(const char *svc) /* Some services don't have a timeout, like fsck */ keywords = rc_deptree_depend(deptree, svc, "keyword"); - if (rc_stringlist_find(keywords, "notimeout")) + if (rc_stringlist_find(keywords, "-timeout") || + rc_stringlist_find(keywords, "notimeout")) forever = true; rc_stringlist_free(keywords); -- cgit v1.2.3