mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 12:23:28 +00:00
[WINESYNC] msi: Use case sensitive compare in handle_msi_break.
Signed-off-by: Piotr Caban <[email protected]> Signed-off-by: Hans Leidekker <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id 8c4b75f252dd5f127320144a43472d4558489af4 by Piotr Caban <[email protected]>
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