diff options
author | unknown <reggie@monster.> | 2005-06-02 11:12:58 -0500 |
---|---|---|
committer | unknown <reggie@monster.> | 2005-06-02 11:12:58 -0500 |
commit | dd3225b22bf8b478361ac795b9f067f4993fd384 (patch) | |
tree | 1f9888e94359699b4b38b638d173c5ecd28e9a54 /mysys/my_access.c | |
parent | 17678a7b885beb59fa808b7ace5cee4a0e21667d (diff) | |
download | mariadb-git-dd3225b22bf8b478361ac795b9f067f4993fd384.tar.gz |
fixed compile problem by replacing W_OK with F_OK
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysys/my_access.c')
-rw-r--r-- | mysys/my_access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_access.c b/mysys/my_access.c index 28210bdfc7d..89e90e16f18 100644 --- a/mysys/my_access.c +++ b/mysys/my_access.c @@ -44,7 +44,7 @@ int my_access(const char *path, int amode) result= GetFileAttributesEx(path, GetFileExInfoStandard, &fileinfo); if (! result || - (fileinfo.dwFileAttributes & FILE_ATTRIBUTE_READONLY) && (amode & W_OK)) + (fileinfo.dwFileAttributes & FILE_ATTRIBUTE_READONLY) && (amode & F_OK)) { my_errno= errno= EACCES; return -1; |