Merge with 3963e8800a1268be93d938c709e2d4be4d0b2d39

Thu, 01 Dec 2011 17:06:27 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 01 Dec 2011 17:06:27 +0100
changeset 26
853a1181884b
parent 25
802c5382f499 (current diff)
parent 24
3963e8800a12 (diff)
child 27
95a958e3de88

Merge with 3963e8800a1268be93d938c709e2d4be4d0b2d39

cline.c file | annotate | diff | comparison | revisions
     1.1 --- a/cline.c	Thu Dec 01 17:04:30 2011 +0100
     1.2 +++ b/cline.c	Thu Dec 01 17:06:27 2011 +0100
     1.3 @@ -120,13 +120,13 @@
     1.4        if (t >= argc) {
     1.5          return exit_with_help(settings, 1);
     1.6        }
     1.7 -      if (stricmp(argv[t], "ignore") == 0) {
     1.8 +      if (strcasecmp(argv[t], "ignore") == 0) {
     1.9          settings->bfileHeuristics->level = BFILE_IGNORE;
    1.10 -      } else if (stricmp(argv[t], "low") == 0) {
    1.11 +      } else if (strcasecmp(argv[t], "low") == 0) {
    1.12          settings->bfileHeuristics->level = BFILE_LOW_ACCURACY;
    1.13 -      } else if (stricmp(argv[t], "medium") == 0) {
    1.14 +      } else if (strcasecmp(argv[t], "medium") == 0) {
    1.15          settings->bfileHeuristics->level = BFILE_MEDIUM_ACCURACY;
    1.16 -      } else if (stricmp(argv[t], "high") == 0) {
    1.17 +      } else if (strcasecmp(argv[t], "high") == 0) {
    1.18          settings->bfileHeuristics->level = BFILE_HIGH_ACCURACY;
    1.19        } else {
    1.20          return exit_with_help(settings, 1);

mercurial