summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-10-11 13:39:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-10-11 13:39:08 (GMT)
commit8565cd4a3dd278a2ff60fd5e0573d746d209466e (patch)
tree4f4555d10a6a15438f52ad130f90c50ceca12fb4
parent2befc6793de3b9eba7c26d5def4cdfc023a8824b (diff)
parentd1f655a66195a041d20c33012ab0bfc89f13a1a4 (diff)
downloadtcl-8565cd4a3dd278a2ff60fd5e0573d746d209466e.zip
tcl-8565cd4a3dd278a2ff60fd5e0573d746d209466e.tar.gz
tcl-8565cd4a3dd278a2ff60fd5e0573d746d209466e.tar.bz2
[Bug 2935503] Incorrect mode field returned by file stat command
-rw-r--r--ChangeLog5
-rw-r--r--tests/io.test8
-rw-r--r--win/tclWinFile.c6
3 files changed, 12 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index d0c4986..bd9f2d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-10-11 Jan Nijtmans <nijtmans@users.sf.net>
+
+ * win/tclWinFile.c: [Bug 2935503] Incorrect mode field
+ * tests/io.test: returned by file stat command
+
2011-10-09 Donal K. Fellows <dkf@users.sf.net>
* generic/tclCompCmds.c (TclCompileDictWithCmd): Corrected handling of
diff --git a/tests/io.test b/tests/io.test
index 8a7cc51..839a309 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -5203,18 +5203,18 @@ test io-40.1 {POSIX open access modes: RDWR} {
close $f
set x
} {zzy abzzy}
-test io-40.2 {POSIX open access modes: CREAT} {unix} {
+test io-40.2 {POSIX open access modes: CREAT} {
file delete $path(test3)
- set f [open $path(test3) {WRONLY CREAT} 0600]
+ set f [open $path(test3) {WRONLY CREAT} 0o666]
file stat $path(test3) stats
- set x [format "0%o" [expr $stats(mode)&0o777]]
+ set x [format "0o%o" [expr $stats(mode)&0o777]]
puts $f "line 1"
close $f
set f [open $path(test3) r]
lappend x [gets $f]
close $f
set x
-} {0600 {line 1}}
+} {0o666 {line 1}}
test io-40.3 {POSIX open access modes: CREAT} {unix umask} {
# This test only works if your umask is 2, like ouster's.
file delete $path(test3)
diff --git a/win/tclWinFile.c b/win/tclWinFile.c
index f0f3bb0..80bf799 100644
--- a/win/tclWinFile.c
+++ b/win/tclWinFile.c
@@ -1288,7 +1288,7 @@ WinIsReserved(
* because for NTFS root volumes, the getFileAttributesProc returns a
* 'hidden' attribute when it should not.
*
- * We never make any calss to a 'get attributes' routine here, since we
+ * We never make any calls to a 'get attributes' routine here, since we
* have arranged things so that our caller already knows such
* information.
*
@@ -2178,8 +2178,8 @@ NativeStatMode(
* positions.
*/
- mode |= (mode & 0x0700) >> 3;
- mode |= (mode & 0x0700) >> 6;
+ mode |= (mode & (S_IREAD|S_IWRITE|S_IEXEC)) >> 3;
+ mode |= (mode & (S_IREAD|S_IWRITE|S_IEXEC)) >> 6;
return (unsigned short) mode;
}