summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-02-11 18:51:35 +0100
committerLennart Poettering <lennart@poettering.net>2015-02-11 18:51:37 +0100
commit418761f5864fe1ae7e9bb884259cc9933ae8ad0c (patch)
tree297cc101a7e2dbd666e948468040ecc2f4b59acd /src/core
parenteef46c372f64f40dd75415b2c504c73138719c8d (diff)
core: correct a log message
The log message talks specifically about services, though it actually applies to any kind of unit.
Diffstat (limited to 'src/core')
-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 2f95737da0..67425ba913 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -1653,7 +1653,7 @@ static void unit_check_binds_to(Unit *u) {
if (!stop)
return;
- log_unit_info(u->id, "Unit %s is bound to inactive service. Stopping, too.", u->id);
+ log_unit_info(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);