summaryrefslogtreecommitdiff
path: root/src/core/unit.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-02-06 19:46:46 +0100
committerLennart Poettering <lennart@poettering.net>2014-02-07 15:14:36 +0100
commit8190da36f71a887945297cd65d6426c78b466a50 (patch)
tree9d46b00118b3572b1c5bca0fb57464c2f167ee8e /src/core/unit.c
parent6e8314c420eb375847c9e526745c2caec802399d (diff)
core: don't send duplicate SIGCONT when killing units
Diffstat (limited to 'src/core/unit.c')
-rw-r--r--src/core/unit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c
index 07eedcd637..6e1c112124 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -3098,7 +3098,7 @@ int unit_kill_context(
if (!pid_set)
return -ENOMEM;
- cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, SIGHUP, true, true, false, pid_set);
+ cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, SIGHUP, false, true, false, pid_set);
}
}
}