diff options
Diffstat (limited to 'win/tclWinFile.c')
-rw-r--r-- | win/tclWinFile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 316a827..c98c42c 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -1074,7 +1074,7 @@ static int WinIsReserved( * volume, 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, + * We never make any calls to a 'get attributes' routine here, * since we have arranged things so that our caller already knows * such information. * @@ -2023,8 +2023,8 @@ NativeStatMode(DWORD attr, int checkLinks, int isExec) * other 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; } |