From: Lennart Poettering Date: Wed, 11 Feb 2015 17:51:35 +0000 (+0100) Subject: core: correct a log message X-Git-Tag: v219~69 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=418761f5864fe1ae7e9bb884259cc9933ae8ad0c core: correct a log message The log message talks specifically about services, though it actually applies to any kind of unit. --- diff --git a/src/core/unit.c b/src/core/unit.c index 2f95737da..67425ba91 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);