From: Yu Watanabe Date: Mon, 7 Apr 2025 07:42:10 +0000 (+0900) Subject: core/service: fix typo X-Git-Tag: v258-rc1~891 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=38747451af5106240881c95052cb0b31e85e9c85;p=thirdparty%2Fsystemd.git core/service: fix typo Follow-up for c53d2d54bd29bd6f4c21705ae23425ade8c12167. --- diff --git a/src/core/service.c b/src/core/service.c index ede78d611e4..f158c43615b 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -2451,7 +2451,7 @@ static int service_adverse_to_leftover_processes(Service *s) { * Here we take these two factors and refuse to start a service if there are existing processes * within a control group. Databases, while generally having some protection against multiple * instances running, lets not stress the rigor of these. Also ExecStartPre= parts of the service - * aren't as rigoriously written to protect aganst against multiple use. */ + * aren't as rigoriously written to protect against multiple use. */ if (unit_warn_leftover_processes(UNIT(s), /* start = */ true) > 0 && IN_SET(s->kill_context.kill_mode, KILL_MIXED, KILL_CONTROL_GROUP) &&