diff options
Diffstat (limited to 'winsup/cygwin/fhandler_disk_file.cc')
-rw-r--r-- | winsup/cygwin/fhandler_disk_file.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler_disk_file.cc b/winsup/cygwin/fhandler_disk_file.cc index 7895ae8f5..7d57dcfde 100644 --- a/winsup/cygwin/fhandler_disk_file.cc +++ b/winsup/cygwin/fhandler_disk_file.cc @@ -478,7 +478,11 @@ fhandler_base::fstat_helper (struct __stat64 *buf, This is too slow on remote drives, so we do without it. Setting the count to 2 confuses `find (1)' command. So let's try it with `1' as link count. */ +#if 0 buf->st_nlink = pc.ndisk_links (nNumberOfLinks); +#else + buf->st_nlink = nNumberOfLinks; +#endif /* Enforce namehash as inode number on untrusted file systems. */ if (pc.isgood_inode (nFileIndex)) |