# HG changeset patch # User Geoff Voelker # Date 893374929 0 # Node ID e02be2b47d1828b1478fc6b64f0c9319ec1e8e9c # Parent 4dbaa2bfab6ebcaf45b7407e17f9a84396e2aed6 (Fcopy_file): Skip dev/inode check on Windows. diff -r 4dbaa2bfab6e -r e02be2b47d18 src/fileio.c --- a/src/fileio.c Thu Apr 23 23:41:42 1998 +0000 +++ b/src/fileio.c Thu Apr 23 23:42:09 1998 +0000 @@ -2229,7 +2229,7 @@ copyable by us. */ input_file_statable_p = (fstat (ifd, &st) >= 0); -#if !defined (MSDOS) || __DJGPP__ > 1 +#if !defined (DOS_NT) || __DJGPP__ > 1 if (out_st.st_mode != 0 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino) {