diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-05 19:20:04 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-05 16:28:56 +0200 |
commit | 9221d4dce6ff3e3cdd0f630a884b3643e6a1cac4 (patch) | |
tree | c0f2deb25d2104bbaa735bb00ed7a226604fe5ec /bin/gensquashfs/test | |
parent | 2d3cb9c4323a803268206db3a9363abc67d908d0 (diff) |
gensquashfs: replace XattrMapEntry with sqfs_xattr_t
It has the same members, but with the added benefit that we already
have helper functions for it in libsquashfs and we can just hose
it directly into the xattr writer.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/gensquashfs/test')
-rw-r--r-- | bin/gensquashfs/test/filemap_xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gensquashfs/test/filemap_xattr.c b/bin/gensquashfs/test/filemap_xattr.c index d258d89..c9fd26b 100644 --- a/bin/gensquashfs/test/filemap_xattr.c +++ b/bin/gensquashfs/test/filemap_xattr.c @@ -25,8 +25,8 @@ static const sqfs_u8 rfkill_acl[] = { int main(int argc, char **argv) { struct XattrMapPattern *pat; - struct XattrMapEntry *ent; struct XattrMap *map; + sqfs_xattr_t *ent; int ret; (void)argc; (void)argv; |