diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-04-28 17:23:29 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-05-07 22:44:05 +0200 |
commit | 21b61b1dd26d4c4a4736aabac128037b67440e2a (patch) | |
tree | 87b1eaf878e3c4712fae8ddf6017b374a794b2d9 /src/portable/portable.c | |
parent | mount-util: add a helper that can add an idmap to an existing mount (diff) | |
download | systemd-21b61b1dd26d4c4a4736aabac128037b67440e2a.tar.xz systemd-21b61b1dd26d4c4a4736aabac128037b67440e2a.zip |
dissect-image: add support for optionally mounting images with idmapping on
Diffstat (limited to 'src/portable/portable.c')
-rw-r--r-- | src/portable/portable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/portable/portable.c b/src/portable/portable.c index 53c4d8e25b..2eebdc08ae 100644 --- a/src/portable/portable.c +++ b/src/portable/portable.c @@ -426,7 +426,7 @@ static int portable_extract_by_path( if (r == 0) { seq[0] = safe_close(seq[0]); - r = dissected_image_mount(m, tmpdir, UID_INVALID, DISSECT_IMAGE_READ_ONLY); + r = dissected_image_mount(m, tmpdir, UID_INVALID, UID_INVALID, DISSECT_IMAGE_READ_ONLY); if (r < 0) { log_debug_errno(r, "Failed to mount dissected image: %m"); goto child_finish; |