mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08: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:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user