From: Michihiro NAKAJIMA Date: Mon, 2 Nov 2009 03:04:10 +0000 (-0500) Subject: Revert from previous change of tar/tree.c. It's my local hack. X-Git-Tag: v2.8.0~239 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db2786285c65730d72cdca3b8e93151cfb5f460d;p=thirdparty%2Flibarchive.git Revert from previous change of tar/tree.c. It's my local hack. SVN-Revision: 1576 --- diff --git a/tar/tree.c b/tar/tree.c index 828762ba1..eeae00b03 100644 --- a/tar/tree.c +++ b/tar/tree.c @@ -715,11 +715,9 @@ int tree_current_is_physical_link(struct tree *t) { #if defined(_WIN32) && !defined(__CYGWIN__) -#if defined(IO_REPARSE_TAG_SYMLINK) if (t->findData) return ((t->findData->dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) && (t->findData->dwReserved0 == IO_REPARSE_TAG_SYMLINK)); -#endif return (0); #else const struct stat *st = tree_current_lstat(t);