From a83ad683fd13e27b3c4e582ecd6c3852245dbe2f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 4 Jan 2013 21:18:17 -0500 Subject: [PATCH] service: fixup after ifdef dropping Commit 88516c0 removed one line too much. --- src/core/service.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/service.c b/src/core/service.c index a4e419b79..70b93e844 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -977,9 +977,9 @@ static int service_load_sysv_name(Service *s, const char *name) { /* For SysV services we strip the rc.* and *.sh * prefixes/suffixes. */ - if (endswith(name, ".sh.service")) + if (startswith(name, "rc.") || + endswith(name, ".sh.service")) return -ENOENT; - if (startswith(name, "rc.")) STRV_FOREACH(p, UNIT(s)->manager->lookup_paths.sysvinit_path) { char *path; -- 2.30.2