From 9ca726a9fe6f37c9fc4c3173427f18cbaf623a4f Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 7 Feb 2018 12:00:54 +0100 Subject: [PATCH] mingw: rename debug.issue1481 to core.debug1481 The `mingw_core_config()` function is only called for `core.*` variables... D'oh! Signed-off-by: Johannes Schindelin --- compat/mingw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/mingw.c b/compat/mingw.c index c0b59e1135b54c..b81057a3997ccb 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -247,7 +247,7 @@ int debug_1481; int mingw_core_config(const char *var, const char *value, void *cb) { - if (!strcmp(var, "debug.issue1481")) { + if (!strcmp(var, "core.debug1481")) { debug_1481 = git_config_bool(var, value); return 0; }