From: Michihiro NAKAJIMA Date: Thu, 3 Dec 2009 12:39:52 +0000 (-0500) Subject: Revert previous change of tar/tree.c X-Git-Tag: v2.8.0~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cac4e8b551af767ceae8fe5ffdb0a844a39efc6a;p=thirdparty%2Flibarchive.git Revert previous change of tar/tree.c It's my local hack. SVN-Revision: 1695 --- diff --git a/tar/tree.c b/tar/tree.c index d77ba9c56..da29c5669 100644 --- a/tar/tree.c +++ b/tar/tree.c @@ -738,11 +738,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);