summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-02-11 18:51:35 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-03-23 02:08:01 -0400
commite341873c563d0299d480445914d60ce3a5f6c47a (patch)
treeab8d49e81d38089b8267394d7d141b9136636c48
parent2d52b2dd8c9b34bb90c42c4b33d777aeb767d76f (diff)
core: correct a log message
The log message talks specifically about services, though it actually applies to any kind of unit. (cherry picked from commit 418761f5864fe1ae7e9bb884259cc9933ae8ad0c) Conflicts: 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 8bf026f11..891df3cb0 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -1555,7 +1555,7 @@ static void unit_check_binds_to(Unit *u) {
if (!stop)
return;
- log_info_unit(u->id, "Unit %s is bound to inactive service. Stopping, too.", u->id);
+ log_info_unit(u->id, "Unit %s is bound to inactive unit. Stopping, too.", u->id);
/* A unit we need to run is gone. Sniff. Let's stop this. */
manager_add_job(u->manager, JOB_STOP, u, JOB_FAIL, true, NULL, NULL);