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

This commit is contained in:
Anatoly Lyutin 2007-01-17 12:46:34 +03:00 committed by Alexandre Julliard
parent 707a56b20c
commit 45d4f8ec2b
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}