diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-02-11 18:51:35 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-02-11 18:51:37 +0100 |
commit | 418761f5864fe1ae7e9bb884259cc9933ae8ad0c (patch) | |
tree | 297cc101a7e2dbd666e948468040ecc2f4b59acd | |
parent | eef46c372f64f40dd75415b2c504c73138719c8d (diff) |
core: correct a log message
The log message talks specifically about services, though it actually
applies to any kind of unit.
-rw-r--r-- | src/core/unit.c | 2 |
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); |