# HG changeset patch # User Mike Becker # Date 1322755587 -3600 # Node ID 853a1181884baa4bfddcb3da4b9b6a0820824231 # Parent 802c5382f499d0e73d2383e9b24c644c99341218# Parent 3963e8800a1268be93d938c709e2d4be4d0b2d39 Merge with 3963e8800a1268be93d938c709e2d4be4d0b2d39 diff -r 802c5382f499 -r 853a1181884b cline.c --- a/cline.c Thu Dec 01 17:04:30 2011 +0100 +++ b/cline.c Thu Dec 01 17:06:27 2011 +0100 @@ -120,13 +120,13 @@ if (t >= argc) { return exit_with_help(settings, 1); } - if (stricmp(argv[t], "ignore") == 0) { + if (strcasecmp(argv[t], "ignore") == 0) { settings->bfileHeuristics->level = BFILE_IGNORE; - } else if (stricmp(argv[t], "low") == 0) { + } else if (strcasecmp(argv[t], "low") == 0) { settings->bfileHeuristics->level = BFILE_LOW_ACCURACY; - } else if (stricmp(argv[t], "medium") == 0) { + } else if (strcasecmp(argv[t], "medium") == 0) { settings->bfileHeuristics->level = BFILE_MEDIUM_ACCURACY; - } else if (stricmp(argv[t], "high") == 0) { + } else if (strcasecmp(argv[t], "high") == 0) { settings->bfileHeuristics->level = BFILE_HIGH_ACCURACY; } else { return exit_with_help(settings, 1);