Message ID | ae7d27b4be1e9b70fc4b7c97524bd6bfbe328270.1640039978.git.steadmon@google.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 44f14a9d24cd9f04a0a789e58968d52d44d7f332 |
Headers | show |
Series | branch: inherit tracking configs | expand |
diff --git a/config.c b/config.c index 152c94f29d..54c0e7d98e 100644 --- a/config.c +++ b/config.c @@ -1577,7 +1577,7 @@ static int git_default_i18n_config(const char *var, const char *value) static int git_default_branch_config(const char *var, const char *value) { if (!strcmp(var, "branch.autosetupmerge")) { - if (value && !strcasecmp(value, "always")) { + if (value && !strcmp(value, "always")) { git_branch_track = BRANCH_TRACK_ALWAYS; return 0; } else if (value && !strcmp(value, "inherit")) {
Although we only documented that branch.*.autosetupmerge would accept "always" as a value, the actual implementation would accept any combination of upper- or lower-case. Fix this to be consistent with documentation and with other values of this config variable. Signed-off-by: Josh Steadmon <steadmon@google.com> --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)