diff mbox series

core.fsyncmethod: correctly camel-case warning message

Message ID pull.1193.git.1648663716891.gitgitgadget@gmail.com (mailing list archive)
State Accepted
Commit f12f3b9807accc0b4ae2b5ebde937fbbb6de7c99
Headers show
Series core.fsyncmethod: correctly camel-case warning message | expand

Commit Message

Neeraj Singh (WINDOWS-SFS) March 30, 2022, 6:08 p.m. UTC
From: Neeraj Singh <neerajsi@microsoft.com>

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>
---
    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
    
    ------------------------------------------------------------------------
    
    See
    https://lore.kernel.org/git/CANYiYbFjRMV-_opvFn78mq7tgtZFMrfPyDjDa+kyaZZfk_LmWQ@mail.gmail.com/
    where this was reported.
    
    This fixes a problem in ns/core-fsyncmethod. Please apply to 'master'.

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1193%2Fneerajsi-msft%2Fns%2FcamelCase-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1193/neerajsi-msft/ns/camelCase-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1193

 config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: 1d4f13e63720fb8eae39afa215199f7d77662dba
diff mbox series

Patch

diff --git a/config.c b/config.c
index 3c9b6b589ab..9eb0dbb448b 100644
--- a/config.c
+++ b/config.c
@@ -1695,7 +1695,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;
 	}