diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-27 12:15:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-27 12:15:14 (GMT) |
commit | b2cbef50995e481997431490fdb7bc5b0ac220c7 (patch) | |
tree | 0a70e88fac3b104e6ff95b5b7b11a41872249aea /generic/tclFCmd.c | |
parent | 4d9e1c8453091e516efd3919546e5c88e768b53a (diff) | |
parent | e4e0688230bab9b433d43f26f6a9e36b0a32b083 (diff) | |
download | tcl-b2cbef50995e481997431490fdb7bc5b0ac220c7.zip tcl-b2cbef50995e481997431490fdb7bc5b0ac220c7.tar.gz tcl-b2cbef50995e481997431490fdb7bc5b0ac220c7.tar.bz2 |
[Bug 3508771] Wrong Tcl_StatBuf used on MinGW
[Bug 2015723] duplicate inodes from file stat on windows
(but now for cygwin as well)
Diffstat (limited to 'generic/tclFCmd.c')
-rw-r--r-- | generic/tclFCmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c index e95a136..a868fe3 100644 --- a/generic/tclFCmd.c +++ b/generic/tclFCmd.c @@ -520,7 +520,7 @@ CopyRenameOneFile( * 16 bits and we get collisions. See bug #2015723. */ -#ifndef WIN32 +#if !defined(WIN32) && !defined(__CYGWIN__) if ((sourceStatBuf.st_ino != 0) && (targetStatBuf.st_ino != 0)) { if ((sourceStatBuf.st_ino == targetStatBuf.st_ino) && (sourceStatBuf.st_dev == targetStatBuf.st_dev)) { |