mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[WINESYNC] msi: Use case sensitive compare in handle_msi_break.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 8c4b75f252dd5f127320144a43472d4558489af4 by Piotr Caban <piotr@codeweavers.com>
This commit is contained in:
parent
b3eae05b11
commit
a3cf801a46
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ static void handle_msi_break(LPCSTR target)
|
|||
if (!GetEnvironmentVariableA("MsiBreak", val, MAX_PATH))
|
||||
return;
|
||||
|
||||
if (strcasecmp(val, target))
|
||||
if (strcmp(val, target))
|
||||
return;
|
||||
|
||||
sprintf(msg, format, GetCurrentProcessId(), GetCurrentProcessId());
|
||||
|
|
Loading…
Reference in a new issue