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>
This commit is contained in:
parent
17056908ac
commit
8c4b75f252
|
@ -468,7 +468,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 New Issue