The warning for an unrecognized fsyncMethod was not
camel-cased.
Reported-by: Jiang Xin <redacted>
Signed-off-by: Neeraj Singh <redacted>
Signed-off-by: Junio C Hamano <redacted>
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;
}