Commit 8c4b75f2 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msi: Use case sensitive compare in handle_msi_break.

parent 17056908
......@@ -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());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment