diff options
author | 2022-03-30 18:08:36 +0000 | |
---|---|---|
committer | 2022-03-30 14:46:08 -0700 | |
commit | f12f3b9807accc0b4ae2b5ebde937fbbb6de7c99 (patch) | |
tree | c396386ea534669a7d11e1ca3d5bb8b265da719c | |
parent | core.fsync: fix incorrect expression for default configuration (diff) | |
download | tgif-f12f3b9807accc0b4ae2b5ebde937fbbb6de7c99.tar.xz |
core.fsyncmethod: correctly camel-case warning message
The warning for an unrecognized fsyncMethod was not
camel-cased.
Reported-by: Jiang Xin <worldhello.net@gmail.com>
Signed-off-by: Neeraj Singh <neerajsi@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1694,7 +1694,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; } |