Skip to content

Commit 8125c4a

Browse files
committed
fixup??? Add config option windows.appendAtomically
The `git_config_get_bool()` function is no more... Signed-off-by: Johannes Schindelin <[email protected]>
1 parent af99e49 commit 8125c4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compat/mingw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ int mingw_open (const char *filename, int oflags, ...)
875875
* and fail to get config value
876876
*/
877877
if (append_atomically < 0 && the_repository && the_repository->commondir &&
878-
git_config_get_bool("windows.appendatomically", &append_atomically))
878+
repo_config_get_bool(the_repository, "windows.appendatomically", &append_atomically))
879879
append_atomically = 1;
880880

881881
if (append_atomically && (oflags & O_APPEND) &&

0 commit comments

Comments
 (0)