summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b2be2f6)
raw | patch | inline | side by side (parent: b2be2f6)
author | Jeff King <peff@peff.net> | |
Sun, 19 Dec 2010 03:36:41 +0000 (22:36 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 19 Dec 2010 18:46:08 +0000 (10:46 -0800) |
This function recently gained the ability to recognize the documented "0"
and "1" values as false/true. However, unlike regular git_config_bool, it
did not treat arbitrary non-zero numbers as true.
While this is undocumented and probably ridiculous for somebody to rely
on, it is safer to behave exactly as git_config_bool would. Because
git_config_maybe_bool can be used to retrofit new non-bool values onto
existing bool options, not behaving in exactly the same way is technically
a regression.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
and "1" values as false/true. However, unlike regular git_config_bool, it
did not treat arbitrary non-zero numbers as true.
While this is undocumented and probably ridiculous for somebody to rely
on, it is safer to behave exactly as git_config_bool would. Because
git_config_maybe_bool can be used to retrofit new non-bool values onto
existing bool options, not behaving in exactly the same way is technically
a regression.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
config.c | patch | blob | history |
diff --git a/config.c b/config.c
index 9918b9351d8b8b9b33fea479bd4f4997a5d6528a..1bf10046be8db00768b428eb262230b9b1d4f5c5 100644 (file)
--- a/config.c
+++ b/config.c
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;
}