diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-05 19:06:42 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-05 16:01:34 +0200 |
commit | c9a8adc15f9de110771156fdc85fb98533648a53 (patch) | |
tree | cdd6300b1c69a002628a76c4bac45ac6664111d9 /bin/tar2sqfs/src | |
parent | 57ca46cdd74fd1004a3b0476c136e1f26fcf002d (diff) |
Move dir_entry_xattr_t from libio to libsquashfs
The structure and functions are renamed to sqfs_xattr_* instead,
an additional helper is added to accept an encoded xattr.
Documentation and unit test are added as well.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/tar2sqfs/src')
-rw-r--r-- | bin/tar2sqfs/src/process_tarball.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/tar2sqfs/src/process_tarball.c b/bin/tar2sqfs/src/process_tarball.c index 76c7dc1..5b0cbdd 100644 --- a/bin/tar2sqfs/src/process_tarball.c +++ b/bin/tar2sqfs/src/process_tarball.c @@ -40,7 +40,7 @@ static int write_file(sqfs_writer_t *sqfs, dir_iterator_t *it, static int copy_xattr(sqfs_writer_t *sqfs, const char *filename, tree_node_t *node, dir_iterator_t *it) { - dir_entry_xattr_t *xattr, *list; + sqfs_xattr_t *xattr, *list; int ret; ret = it->read_xattr(it, &list); @@ -82,10 +82,10 @@ static int copy_xattr(sqfs_writer_t *sqfs, const char *filename, goto fail; } - dir_entry_xattr_list_free(list); + sqfs_xattr_list_free(list); return 0; fail: - dir_entry_xattr_list_free(list); + sqfs_xattr_list_free(list); return -1; } |