diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-01 21:48:12 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-01 21:50:49 +0200 |
commit | eddb62072f4d4d2402d520e5041d9677fa6efdff (patch) | |
tree | bfbde95d8b0e825de8fdd92d597ba226f67813b5 /unpack/rdsquashfs.c | |
parent | 0b79e0cad88fe6494c1d5af9a5e990b491170d11 (diff) |
Add flag to rdsquashfs to optionally set xattrs on unpacked files
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/rdsquashfs.c')
-rw-r--r-- | unpack/rdsquashfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unpack/rdsquashfs.c b/unpack/rdsquashfs.c index 5eb10f2..2162cc4 100644 --- a/unpack/rdsquashfs.c +++ b/unpack/rdsquashfs.c @@ -112,7 +112,7 @@ int main(int argc, char **argv) if (fill_unpacked_files(&fs, data, opt.flags, opt.num_jobs)) goto out_fs; - if (update_tree_attribs(n, opt.flags)) + if (update_tree_attribs(&fs, n, opt.flags)) goto out_fs; if (opt.unpack_root != NULL && popd() != 0) |