diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-17 11:37:18 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-17 11:37:18 +0200 |
commit | a5d7779a30d74205c92c5bb1968855e7e61d4458 (patch) | |
tree | b4eae56069c0a6a64983564cc9d267ae0ffc3c95 /tar/tar.h | |
parent | e5694858eac4c199022b822f41bc40d769f5aed9 (diff) |
tar2sqfs: rewrite parser to fill struct stat, create tree node from that
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tar/tar.h')
-rw-r--r-- | tar/tar.h | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -26,12 +26,7 @@ typedef struct { } tar_header_t; typedef struct { - uint64_t size; - uint64_t mode; - uint64_t uid; - uint64_t gid; - uint64_t dev_maj; - uint64_t dev_min; + struct stat sb; char *name; char *link_target; bool unknown_record; |