summaryrefslogtreecommitdiff
path: root/src/path-lookup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-04-28 04:55:05 +0200
committerLennart Poettering <lennart@poettering.net>2011-04-28 04:55:05 +0200
commita9dd208208e672a4fe5a3c2405946c1506e034db (patch)
tree42f069093153a5db7b78de55270dc4ef5ccbecff /src/path-lookup.c
parentac3f50caa50835a429fc59d9168799bbb6e24fb9 (diff)
lookup: drop empty directories from search paths
Diffstat (limited to 'src/path-lookup.c')
-rw-r--r--src/path-lookup.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/path-lookup.c b/src/path-lookup.c
index b39ce8b699..b1c69814ca 100644
--- a/src/path-lookup.c
+++ b/src/path-lookup.c
@@ -205,6 +205,7 @@ int lookup_paths_init(LookupPaths *p, ManagerRunningAs running_as) {
return -ENOMEM;
strv_uniq(p->unit_path);
+ strv_path_remove_empty(p->unit_path);
if (!strv_isempty(p->unit_path)) {
@@ -259,6 +260,9 @@ int lookup_paths_init(LookupPaths *p, ManagerRunningAs running_as) {
strv_uniq(p->sysvinit_path);
strv_uniq(p->sysvrcnd_path);
+ strv_path_remove_empty(p->sysvinit_path);
+ strv_path_remove_empty(p->sysvrcnd_path);
+
if (!strv_isempty(p->sysvinit_path)) {
if (!(t = strv_join(p->sysvinit_path, "\n\t")))