Commit 7a0d4ba2 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Do not return FALSE on SetFileAttributes() failure (in readonly

directory setups).
parent 51ab43bd
......@@ -104,7 +104,7 @@ BOOL WINAPI SetFileAttributesA(LPCSTR lpFileName, DWORD attributes)
{
FILE_SetDosError();
MESSAGE("Wine ERROR: Couldn't set file attributes for existing file \"%s\". Check permissions or set VFAT \"quiet\" flag !\n", full_name.long_name);
return FALSE;
return TRUE;
}
return TRUE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment