]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mstack: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 19 Feb 2026 16:14:27 +0000 (01:14 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 19 Feb 2026 16:14:30 +0000 (01:14 +0900)
Follow-up for 8343032a86b62f62780de85a696ab8f9d2632244.

src/shared/mstack.c

index 9cbc316319114fe586a1f3530ed5e9f2301a6e3b..f0ebd57635bdae98cca59189fdd03d03d4644218 100644 (file)
@@ -601,7 +601,7 @@ int mstack_open_images(
                                         return r;
 
                                 if (!dissected_image->partitions[PARTITION_ROOT].found)
-                                        return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "Currently images withot root partition are not supported: %m");
+                                        return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "Currently images without root partition are not supported: %m");
 
                                 r = dissected_image_load_verity_sig_partition(
                                                 dissected_image,
@@ -757,7 +757,7 @@ static int mstack_make_overlayfs(
 
         /* If we operate unpriv, we have to attach the layers to a place in the fs, before we can pass them
          * to overlayfs (see comments below), hence fork off a child with a private mount namespace, so that
-         * noone else sees that. */
+         * no one else sees that. */
         r = pidref_safe_fork("(layerfd)",
                       FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGTERM|FORK_LOG|FORK_REOPEN_LOG|FORK_WAIT|FORK_NEW_MOUNTNS|FORK_MOUNTNS_SLAVE,
                       /* ret= */ NULL);