diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-14 20:37:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-14 20:37:54 +0000 |
commit | e00e5025ecb2eb6160e7b94c0e93fc2a777f6eaa (patch) | |
tree | c08295d50b96a33d51c11b8601ac455333b8004a /include | |
parent | 39487e2d6a9a2b6e520969f65b4d326da82e354f (diff) | |
download | busybox-w32-e00e5025ecb2eb6160e7b94c0e93fc2a777f6eaa.tar.gz busybox-w32-e00e5025ecb2eb6160e7b94c0e93fc2a777f6eaa.tar.bz2 busybox-w32-e00e5025ecb2eb6160e7b94c0e93fc2a777f6eaa.zip |
tar: real support for -p. +200 if selected.
By Natanael Copa <natanael.copa at gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/unarchive.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/unarchive.h b/include/unarchive.h index e8beebbe1..4ed2ccd0c 100644 --- a/include/unarchive.h +++ b/include/unarchive.h | |||
@@ -13,6 +13,10 @@ | |||
13 | typedef struct file_header_t { | 13 | typedef struct file_header_t { |
14 | char *name; | 14 | char *name; |
15 | char *link_target; | 15 | char *link_target; |
16 | #if ENABLE_FEATURE_TAR_UNAME_GNAME | ||
17 | char *uname; | ||
18 | char *gname; | ||
19 | #endif | ||
16 | off_t size; | 20 | off_t size; |
17 | uid_t uid; | 21 | uid_t uid; |
18 | gid_t gid; | 22 | gid_t gid; |