Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/local_includes/path.h')
-rw-r--r--winsup/cygwin/local_includes/path.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/local_includes/path.h b/winsup/cygwin/local_includes/path.h
index c7f113f87..d19721e0c 100644
--- a/winsup/cygwin/local_includes/path.h
+++ b/winsup/cygwin/local_includes/path.h
@@ -174,8 +174,8 @@ class path_conv
bool isgood_inode (ino_t ino) const;
bool support_sparse () const
{
- return (mount_flags & MOUNT_SPARSE)
- && (fs_flags () & FILE_SUPPORTS_SPARSE_FILES);
+ return (fs_flags () & FILE_SUPPORTS_SPARSE_FILES)
+ && (fs.is_ssd () || (mount_flags & MOUNT_SPARSE));
}
int has_dos_filenames_only () const {return mount_flags & MOUNT_DOS;}
int has_buggy_reopen () const {return fs.has_buggy_reopen ();}