diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-03 18:48:23 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-03 18:48:23 -0700 |
commit | 624314fda7e7bd1107db7de4e877ee6285d7d6eb (patch) | |
tree | ce487eba0362f2c31e9f4197cb1933edbb3a5d5b /config.c | |
parent | 3f492ba1fc4e63073378cc097154bed1ed2563c8 (diff) | |
download | git-624314fda7e7bd1107db7de4e877ee6285d7d6eb.tar.gz git-624314fda7e7bd1107db7de4e877ee6285d7d6eb.tar.xz |
boolean: accept yes and no as well
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |