]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mount-setup: fix typo
authorMike Yuan <me@yhndnzj.com>
Sat, 20 Apr 2024 19:09:22 +0000 (03:09 +0800)
committerMike Yuan <me@yhndnzj.com>
Fri, 26 Apr 2024 02:24:38 +0000 (10:24 +0800)
src/shared/mount-setup.c

index 6511d48a9090da9ca4b2881a6fc35e8d337fbd40..ba291bd76f07345bc52d4e34c5357232f4fb8993 100644 (file)
@@ -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.");