summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-08-18 22:01:25 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-08-18 22:01:25 (GMT)
commit61ccaeee85883a701126146b6a01740c5844da2e (patch)
treeccaeebec7dc7afacfe5edda64cd15cf388870a2f
parentfa770fdd5c38ffd5f034aa5da3738270ca196c23 (diff)
parent35c86ea48acca023e3bf415221319a1aa3080e92 (diff)
downloadtcl-61ccaeee85883a701126146b6a01740c5844da2e.zip
tcl-61ccaeee85883a701126146b6a01740c5844da2e.tar.gz
tcl-61ccaeee85883a701126146b6a01740c5844da2e.tar.bz2
Fix [6a8c5833c9]: NTFS alternate data streams (ADS) no longer readable writable
-rw-r--r--win/tclWinFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c
index 1eb8b22..03c92e2 100644
--- a/win/tclWinFile.c
+++ b/win/tclWinFile.c
@@ -3144,7 +3144,7 @@ TclNativeCreateNativeRep(
*/
while (*wp != '\0') {
- if ((*wp < ' ') || wcschr(L"\"*:<>?|", *wp)) {
+ if ((*wp < ' ') || wcschr(L"\"*<>?|", *wp)) {
*wp |= 0xF000;
} else if (*wp == '/') {
*wp = '\\';