From: Mike Yuan Date: Sat, 20 Apr 2024 19:09:22 +0000 (+0800) Subject: mount-setup: fix typo X-Git-Tag: v256-rc2~197^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0a09da45ee9bd5ba09504d082f2a9c4b9ace759;p=thirdparty%2Fsystemd.git mount-setup: fix typo --- diff --git a/src/shared/mount-setup.c b/src/shared/mount-setup.c index 6511d48a909..ba291bd76f0 100644 --- a/src/shared/mount-setup.c +++ b/src/shared/mount-setup.c @@ -69,7 +69,7 @@ static bool check_recursiveprot_supported(void) { r = mount_option_supported("cgroup2", "memory_recursiveprot", NULL); if (r < 0) - log_debug_errno(r, "Failed to determiner whether the 'memory_recursiveprot' mount option is supported, assuming not: %m"); + log_debug_errno(r, "Failed to determine whether the 'memory_recursiveprot' mount option is supported, assuming not: %m"); else if (r == 0) log_debug("This kernel version does not support 'memory_recursiveprot', not using mount option.");