summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2021-11-16 15:24:38 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-11-16 17:02:18 +0100
commit2ec0c4f94de7091c2f4fdf76742bb793d64de781 (patch)
treef956fa9161145adb93d43cc15fa618e5e7403579
parent0c98f381e72bd9dce14c82760b394e5022ad3456 (diff)
downloadsystemd-2ec0c4f94de7091c2f4fdf76742bb793d64de781.tar.gz
sysext: fix tmpfs mount source
It's "sysext", not "sysexit". The string passed here is pure decoration, and noone will see it, since it's only in our private mount namespace. But still, it's a typo, let's fix it
-rw-r--r--src/sysext/sysext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysext/sysext.c b/src/sysext/sysext.c
index b1f10e1eae..b9387e904a 100644
--- a/src/sysext/sysext.c
+++ b/src/sysext/sysext.c
@@ -465,7 +465,7 @@ static int merge_subprocess(Hashmap *images, const char *workspace) {
* but let the kernel do that entirely automatically, once our namespace dies. Note that this file
* system won't be visible to anyone but us, since we opened our own namespace and then made the
* /run/ hierarchy (which our workspace is contained in) MS_SLAVE, see above. */
- r = mount_nofollow_verbose(LOG_ERR, "sysexit", workspace, "tmpfs", 0, "mode=0700");
+ r = mount_nofollow_verbose(LOG_ERR, "sysext", workspace, "tmpfs", 0, "mode=0700");
if (r < 0)
return r;