diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-09 14:11:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-09 14:11:45 +0200 |
commit | e69ad87802139b7b62fc06ff5d5d09cc4245d5fc (patch) | |
tree | 5140bc5e536c722f9aa5a0896a7229cf9b2148b0 /archival/libunarchive/header_verbose_list.c | |
parent | 02365a6ef73defb8689d3ed5228125d72993dec9 (diff) |
tar: fix "hardlinks to symlinks chown" bug 1519.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libunarchive/header_verbose_list.c')
-rw-r--r-- | archival/libunarchive/header_verbose_list.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archival/libunarchive/header_verbose_list.c b/archival/libunarchive/header_verbose_list.c index f6f04cfd5..3319e63a9 100644 --- a/archival/libunarchive/header_verbose_list.c +++ b/archival/libunarchive/header_verbose_list.c @@ -61,6 +61,7 @@ void FAST_FUNC header_verbose_list(const file_header_t *file_header) #endif /* FEATURE_TAR_UNAME_GNAME */ + /* NB: GNU tar shows "->" for symlinks and "link to" for hardlinks */ if (file_header->link_target) { printf(" -> %s", file_header->link_target); } |