From: Zbigniew Jędrzejewski-Szmek Date: Sun, 28 Jul 2019 11:00:01 +0000 (+0200) Subject: pid1: fix message about triggers missing services X-Git-Tag: v243-rc1~14^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7b9f4d9fa50e33b5755f5fc4b9717fbfc20c78d;p=thirdparty%2Fsystemd.git pid1: fix message about triggers missing services systemd[1]: systemd-tmpfiles-clean.timer: Refusing to start, unit systemd-tmpfiles-cle an.timer to trigger not loaded. --- diff --git a/src/core/unit.c b/src/core/unit.c index fa89bd4a4d4..8fe02462be8 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -5764,9 +5764,11 @@ int unit_test_trigger_loaded(Unit *u) { trigger = UNIT_TRIGGER(u); if (!trigger) - return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT), "Refusing to start, unit to trigger not loaded."); + return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT), + "Refusing to start, no unit to trigger."); if (trigger->load_state != UNIT_LOADED) - return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT), "Refusing to start, unit %s to trigger not loaded.", u->id); + return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT), + "Refusing to start, unit %s to trigger not loaded.", trigger->id); return 0; }