From: Philip Withnall Date: Wed, 12 Jun 2019 07:24:45 +0000 (+0100) Subject: service: Fix typo in warning message X-Git-Tag: v243-rc1~296^2 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fsystemd.git;a=commitdiff_plain;h=226a08f28fe271394216288ed5672fc88e744144 service: Fix typo in warning message The directive is `RuntimeMaxSec=`, not `MaxRuntimeSec=`. Signed-off-by: Philip Withnall --- 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; }