Browse Source

Merge branch 'jk/maint-decorate-01-bool'

* jk/maint-decorate-01-bool:
  handle arbitrary ints in git_config_maybe_bool
maint
Junio C Hamano 14 years ago
parent
commit
f7d07cce82
  1. 8
      config.c

8
config.c

@ -429,13 +429,11 @@ static int git_config_maybe_bool_text(const char *name, const char *value) @@ -429,13 +429,11 @@ static int git_config_maybe_bool_text(const char *name, const char *value)

int git_config_maybe_bool(const char *name, const char *value)
{
int v = git_config_maybe_bool_text(name, value);
long v = git_config_maybe_bool_text(name, value);
if (0 <= v)
return v;
if (!strcmp(value, "0"))
return 0;
if (!strcmp(value, "1"))
return 1;
if (git_parse_long(value, &v))
return !!v;
return -1;
}


Loading…
Cancel
Save