All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] core.fsyncmethod: correctly camel-case warning message
@ 2022-03-30 18:08 Neeraj K. Singh via GitGitGadget
  0 siblings, 0 replies; only message in thread
From: Neeraj K. Singh via GitGitGadget @ 2022-03-30 18:08 UTC (permalink / raw)
  To: git; +Cc: worldhello.net, Neeraj K. Singh, Neeraj Singh

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(-)

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;
 	}

base-commit: 1d4f13e63720fb8eae39afa215199f7d77662dba
-- 
gitgitgadget

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-03-30 18:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-30 18:08 [PATCH] core.fsyncmethod: correctly camel-case warning message Neeraj K. Singh via GitGitGadget

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.