From: Zbigniew Jędrzejewski-Szmek Date: Thu, 5 Feb 2026 10:09:59 +0000 (+0100) Subject: core/exec-invoke: add missing char in comment X-Git-Tag: v260-rc1~6^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92a0761d553c207012ad17c9d55ec58ddabd9bba;p=thirdparty%2Fsystemd.git core/exec-invoke: add missing char in comment --- diff --git a/src/core/exec-invoke.c b/src/core/exec-invoke.c index 315ef410315..b588eb232e3 100644 --- a/src/core/exec-invoke.c +++ b/src/core/exec-invoke.c @@ -2089,7 +2089,7 @@ static int build_environment( /* If this is D-Bus, tell the nss-systemd module, since it relies on being able to use blocking * Varlink calls back to us for look up dynamic users in PID 1. Break the deadlock between D-Bus and - * PID 1 by disabling use of PID1' NSS interface for looking up dynamic users. */ + * PID 1 by disabling use of PID1's NSS interface for looking up dynamic users. */ if (p->flags & EXEC_NSS_DYNAMIC_BYPASS) { r = strv_extend_with_size(&e, &n, "SYSTEMD_NSS_DYNAMIC_BYPASS=1"); if (r < 0) @@ -2097,8 +2097,8 @@ static int build_environment( } /* We query "root" if this is a system unit and User= is not specified. $USER is always set. $HOME - * could cause problem for e.g. getty, since login doesn't override $HOME, and $LOGNAME and $SHELL don't - * really make much sense since we're not logged in. Hence we conditionalize the three based on + * could cause problem for e.g. getty, since login doesn't override $HOME, and $LOGNAME and $SHELL + * don't really make much sense since we're not logged in. Hence we conditionalize the three based on * SetLoginEnvironment= switch. */ if (!username && !c->dynamic_user && p->runtime_scope == RUNTIME_SCOPE_SYSTEM) { assert(!c->user);