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

directory setups).
oldstable
Marcus Meissner 2001-05-18 23:18:25 +00:00 committed by Alexandre Julliard
parent 51ab43bd13
commit 7a0d4ba275
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}