summaryrefslogtreecommitdiff
path: root/src/job.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-11-18 03:52:39 +0100
committerLennart Poettering <lennart@poettering.net>2010-11-18 03:52:39 +0100
commita45b9fd09442eb75d39e3419c1fced90c7e339e7 (patch)
treea9c9308987162ba6db8fa8fd26df3c8aa26fc211 /src/job.c
parentc1d6bc0e5373cec58821c3cba59a6df8de161e27 (diff)
job: make sure we don't fail umount.target if a mount unit failed to stop
Diffstat (limited to 'src/job.c')
-rw-r--r--src/job.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/job.c b/src/job.c
index 79189f04da..30a46bea8b 100644
--- a/src/job.c
+++ b/src/job.c
@@ -531,7 +531,7 @@ int job_finish_and_invalidate(Job *j, bool success) {
} else if (t == JOB_STOP) {
- SET_FOREACH(other, u->meta.dependencies[UNIT_CONFLICTS], i)
+ SET_FOREACH(other, u->meta.dependencies[UNIT_CONFLICTED_BY], i)
if (other->meta.job &&
(other->meta.job->type == JOB_START ||
other->meta.job->type == JOB_VERIFY_ACTIVE ||