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:
authorCorinna Vinschen <corinna@vinschen.de>2023-04-03 23:41:07 +0300
committerCorinna Vinschen <corinna@vinschen.de>2023-04-03 23:41:07 +0300
commitbe2749cd4eb6e7ea1b70eaf7cd78f683db21c8ec (patch)
tree14f847e09a49055a0d226349b360f24fb223505a /winsup/utils
parentcc8404039f50c36100fbad85a3af22d579d3576a (diff)
Cygwin: chattr: fix description of requirements for casesensitive directories
Preconditions of WSL or empty directories dependent on Windows versions was totally screwed up. Drop the description from --help, describe the preconditions for case-sensitive dirs in the man page instead. Fixes: fc6e89c937c1 ("Cygwin: chattr: clarify requirements for casesensitive directories") Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/utils')
-rw-r--r--winsup/utils/chattr.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/winsup/utils/chattr.c b/winsup/utils/chattr.c
index 2438d79b4..4b074133c 100644
--- a/winsup/utils/chattr.c
+++ b/winsup/utils/chattr.c
@@ -264,10 +264,7 @@ usage (FILE *stream)
" 'n', 'Notindexed': file or directory is not to be indexed by the\n"
" content indexing service\n"
" 'e', 'Encrypted': file is encrypted\n"
- " 'C', 'Casesensitive': directory is handled case sensitive\n"
- " - local NTFS only\n"
- " - Windows 10 1803 or later: requires installed WSL\n"
- " - Windows 11: enabling requires empty dir\n");
+ " 'C', 'Casesensitive': directory is handled case sensitive\n");
exit (stream == stdout ? 0 : 1);
}