Skip to content

Commit 2ec0c4f

Browse files
poetteringkeszybz
authored andcommitted
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
1 parent 0c98f38 commit 2ec0c4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sysext/sysext.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ static int merge_subprocess(Hashmap *images, const char *workspace) {
465465
* but let the kernel do that entirely automatically, once our namespace dies. Note that this file
466466
* system won't be visible to anyone but us, since we opened our own namespace and then made the
467467
* /run/ hierarchy (which our workspace is contained in) MS_SLAVE, see above. */
468-
r = mount_nofollow_verbose(LOG_ERR, "sysexit", workspace, "tmpfs", 0, "mode=0700");
468+
r = mount_nofollow_verbose(LOG_ERR, "sysext", workspace, "tmpfs", 0, "mode=0700");
469469
if (r < 0)
470470
return r;
471471

0 commit comments

Comments
 (0)