Skip to content

Commit 22f42a0

Browse files
committed
mingw_rename: support ReFS on Windows 2022
ReFS is an alternative filesystem to NTFS. On Windows 2022, it seems not to support the rename operation using POSIX semantics that Git uses on Windows as of 391bcea (compat/mingw: support POSIX semantics for atomic renames, 2024-10-27). However, Windows 2022 reports `ERROR_NOT_SUPPORTED` in this instance. This is in contrast to `ERROR_INVALID_PARAMETER` (as previous Windows versions would report that do not support POSIX semantics in renames at all). Let's handle both errors the same: by falling back to the best-effort option, namely to rename without POSIX semantics. This fixes #5427 Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9db3a65 commit 22f42a0

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
@@ -2277,7 +2277,7 @@ int mingw_rename(const char *pold, const char *pnew)
22772277
* current system doesn't support FileRenameInfoEx. Keep us
22782278
* from using it in future calls and retry.
22792279
*/
2280-
if (gle == ERROR_INVALID_PARAMETER) {
2280+
if (gle == ERROR_INVALID_PARAMETER || gle == ERROR_NOT_SUPPORTED) {
22812281
supports_file_rename_info_ex = 0;
22822282
goto repeat;
22832283
}

0 commit comments

Comments
 (0)