Commit 45d4f8ec authored by Anatoly Lyutin's avatar Anatoly Lyutin Committed by Alexandre Julliard

cmd: In function WCMD_goto() changed strcmp() to lstrcmpi().

parent 707a56b2
......@@ -435,7 +435,7 @@ char string[MAX_PATH];
if (context != NULL) {
SetFilePointer (context -> h, 0, NULL, FILE_BEGIN);
while (WCMD_fgets (string, sizeof(string), context -> h)) {
if ((string[0] == ':') && (strcmp (&string[1], param1) == 0)) return;
if ((string[0] == ':') && (lstrcmpi (&string[1], param1) == 0)) return;
}
WCMD_output ("Target to GOTO not found\n");
}
......
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