diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-04-08 02:12:06 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-04-08 02:12:08 +0200 |
commit | 693a28d7482355906501a910ae48b32979e46d8f (patch) | |
tree | 5574444230ea981f000220cda3977170af26cdb6 | |
parent | Merge pull request #32136 from YHNdnzj/nextroot-auto-mountpoint (diff) | |
download | systemd-693a28d7482355906501a910ae48b32979e46d8f.tar.xz systemd-693a28d7482355906501a910ae48b32979e46d8f.zip |
nspawn: fix typo
Follow-up for 0af7e294343b29d769c1bae6a8d390236560ec1a.
-rw-r--r-- | src/nspawn/nspawn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 7edb45dd17..f4da91797e 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -5095,7 +5095,7 @@ static int run_container( if (arg_privileged) { assert(userns_fd < 0); - /* If we have no user namespace then we'll clone and create a new mount namepsace right-away. */ + /* If we have no user namespace then we'll clone and create a new mount namespace right-away. */ *pid = raw_clone(SIGCHLD|CLONE_NEWNS); if (*pid < 0) |