FILE_CreateFile()'s read/write-check was broken due to checking of

ERROR_xxx instead of STATUS_xxx.
This commit is contained in:
Andreas Mohr 2000-04-13 15:58:30 +00:00 committed by Alexandre Julliard
parent 2cf4ebc1aa
commit af7e1ae5c5
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ HANDLE FILE_CreateFile( LPCSTR filename, DWORD access, DWORD sharing,
if ((req->handle == -1) && !fail_read_only && (access & GENERIC_WRITE))
{
if ((err == ERROR_ACCESS_DENIED) || (err == ERROR_WRITE_PROTECT))
if ((err == STATUS_MEDIA_WRITE_PROTECTED) || (err == STATUS_ACCESS_DENIED))
{
TRACE("Write access failed for file '%s', trying without "
"write access", filename);