Index: file_io/win32/open.c =================================================================== --- file_io/win32/open.c (revision 1687097) +++ file_io/win32/open.c (working copy) @@ -548,15 +548,13 @@ return rv; } #ifndef _WIN32_WCE - if (MoveFileExW(wfrompath, wtopath, MOVEFILE_REPLACE_EXISTING | - MOVEFILE_COPY_ALLOWED)) + if (MoveFileExW(wfrompath, wtopath, MOVEFILE_REPLACE_EXISTING)) #else if (MoveFileW(wfrompath, wtopath)) #endif return APR_SUCCESS; #else - if (MoveFileEx(frompath, topath, MOVEFILE_REPLACE_EXISTING | - MOVEFILE_COPY_ALLOWED)) + if (MoveFileEx(frompath, topath, MOVEFILE_REPLACE_EXISTING)) return APR_SUCCESS; #endif }