aboutsummaryrefslogtreecommitdiff
path: root/include/tar.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-12-13 15:47:35 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-12-13 15:49:00 +0100
commit262fc48eb9e246ddb7315f5a14e7f6f58ca987c1 (patch)
treedc3e342ead34d15db452804d445d6621afe64a5e /include/tar.h
parent7ab411dbd2cb066652f5f51a1bc6cc793b7cafad (diff)
Better support for reading/writing non-ASCII xattr values from/to tar
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/tar.h')
-rw-r--r--include/tar.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/tar.h b/include/tar.h
index c496095..22563c4 100644
--- a/include/tar.h
+++ b/include/tar.h
@@ -71,7 +71,8 @@ typedef struct {
typedef struct tar_xattr_t {
struct tar_xattr_t *next;
char *key;
- char *value;
+ sqfs_u8 *value;
+ size_t value_len;
char data[];
} tar_xattr_t;