From 226a08f28fe271394216288ed5672fc88e744144 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 12 Jun 2019 08:24:45 +0100 Subject: [PATCH] service: Fix typo in warning message The directive is `RuntimeMaxSec=`, not `MaxRuntimeSec=`. Signed-off-by: Philip Withnall --- src/core/service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/service.c b/src/core/service.c index 190d84e56a9..4b50d8d0297 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -603,7 +603,7 @@ static int service_verify(Service *s) { log_unit_warning(UNIT(s), "Service has USBFunctionStrings= setting, but no USBFunctionDescriptors=. Ignoring."); if (s->runtime_max_usec != USEC_INFINITY && s->type == SERVICE_ONESHOT) - log_unit_warning(UNIT(s), "MaxRuntimeSec= has no effect in combination with Type=oneshot. Ignoring."); + log_unit_warning(UNIT(s), "RuntimeMaxSec= has no effect in combination with Type=oneshot. Ignoring."); return 0; } -- 2.39.2