mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[SMSS]
Fix broken if statement. It couldn't evaluate to true. svn path=/trunk/; revision=67077
This commit is contained in:
parent
a2a9df3eed
commit
80bdaf1f3e
1 changed files with 1 additions and 1 deletions
|
@ -2071,7 +2071,7 @@ SmpProcessFileRenames(VOID)
|
|||
InformationClass);
|
||||
|
||||
/* Check if we seem to have failed because the file was readonly */
|
||||
if ((NT_SUCCESS(Status) &&
|
||||
if ((!NT_SUCCESS(Status) &&
|
||||
(InformationClass == FileRenameInformation) &&
|
||||
(Status == STATUS_OBJECT_NAME_COLLISION) &&
|
||||
(Buffer->ReplaceIfExists)))
|
||||
|
|
Loading…
Reference in a new issue