* maint:
  add, merge, diff: do not use strcasecmp to compare config variable names
This commit is contained in:
Junio C Hamano 2011-05-14 20:44:09 -07:00
Родитель 2de58b398b 8c2be75fe1
Коммит 2f80de956f
3 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -331,8 +331,8 @@ static struct option builtin_add_options[] = {
static int add_config(const char *var, const char *value, void *cb) static int add_config(const char *var, const char *value, void *cb)
{ {
if (!strcasecmp(var, "add.ignoreerrors") || if (!strcmp(var, "add.ignoreerrors") ||
!strcasecmp(var, "add.ignore-errors")) { !strcmp(var, "add.ignore-errors")) {
ignore_add_errors = git_config_bool(var, value); ignore_add_errors = git_config_bool(var, value);
return 0; return 0;
} }

Просмотреть файл

@ -1721,15 +1721,15 @@ int merge_recursive_generic(struct merge_options *o,
static int merge_recursive_config(const char *var, const char *value, void *cb) static int merge_recursive_config(const char *var, const char *value, void *cb)
{ {
struct merge_options *o = cb; struct merge_options *o = cb;
if (!strcasecmp(var, "merge.verbosity")) { if (!strcmp(var, "merge.verbosity")) {
o->verbosity = git_config_int(var, value); o->verbosity = git_config_int(var, value);
return 0; return 0;
} }
if (!strcasecmp(var, "diff.renamelimit")) { if (!strcmp(var, "diff.renamelimit")) {
o->diff_rename_limit = git_config_int(var, value); o->diff_rename_limit = git_config_int(var, value);
return 0; return 0;
} }
if (!strcasecmp(var, "merge.renamelimit")) { if (!strcmp(var, "merge.renamelimit")) {
o->merge_rename_limit = git_config_int(var, value); o->merge_rename_limit = git_config_int(var, value);
return 0; return 0;
} }

Просмотреть файл

@ -347,7 +347,7 @@ int git_xmerge_style = -1;
int git_xmerge_config(const char *var, const char *value, void *cb) int git_xmerge_config(const char *var, const char *value, void *cb)
{ {
if (!strcasecmp(var, "merge.conflictstyle")) { if (!strcmp(var, "merge.conflictstyle")) {
if (!value) if (!value)
die("'%s' is not a boolean", var); die("'%s' is not a boolean", var);
if (!strcmp(value, "diff3")) if (!strcmp(value, "diff3"))