From: Neeraj Singh <neerajsi@xxxxxxxxxxxxx> The warning for an unrecognized fsyncMethod was not camel-cased. Signed-off-by: Neeraj Singh <neerajsi@xxxxxxxxxxxxx> --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index e9cac5f4707..ae819dee20b 100644 --- a/config.c +++ b/config.c @@ -1697,7 +1697,7 @@ static int git_default_core_config(const char *var, const char *value, void *cb) if (!strcmp(var, "core.fsyncobjectfiles")) { if (fsync_object_files < 0) - warning(_("core.fsyncobjectfiles is deprecated; use core.fsync instead")); + warning(_("core.fsyncObjectFiles is deprecated; use core.fsync instead")); fsync_object_files = git_config_bool(var, value); return 0; } -- gitgitgadget