chiark / gitweb /
core: correct a log message
authorLennart Poettering <lennart@poettering.net>
Wed, 11 Feb 2015 17:51:35 +0000 (18:51 +0100)
committerLennart Poettering <lennart@poettering.net>
Wed, 11 Feb 2015 17:51:37 +0000 (18:51 +0100)
The log message talks specifically about services, though it actually
applies to any kind of unit.

src/core/unit.c

index 2f95737da00a8a41d7101580c04b355c1519776b..67425ba913e0e2ce317ad5b6e852c0983ca7ec36 100644 (file)
@@ -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);