зеркало из https://github.com/microsoft/git.git
boolean: accept yes and no as well
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
3f492ba1fc
Коммит
624314fda7
4
config.c
4
config.c
|
@ -244,9 +244,9 @@ int git_config_bool(const char *name, const char *value)
|
|||
return 1;
|
||||
if (!*value)
|
||||
return 0;
|
||||
if (!strcasecmp(value, "true"))
|
||||
if (!strcasecmp(value, "true") || !strcasecmp(value, "yes"))
|
||||
return 1;
|
||||
if (!strcasecmp(value, "false"))
|
||||
if (!strcasecmp(value, "false") || !strcasecmp(value, "no"))
|
||||
return 0;
|
||||
return git_config_int(name, value) != 0;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче