diff -r 7333d7932ef7 -r 8b7f4e561641 secureswitools/swisistools/source/sisxlibrary/utility_windows.cpp --- a/secureswitools/swisistools/source/sisxlibrary/utility_windows.cpp Tue Aug 31 15:21:33 2010 +0300 +++ b/secureswitools/swisistools/source/sisxlibrary/utility_windows.cpp Wed Sep 01 12:22:02 2010 +0100 @@ -185,21 +185,15 @@ return ::GetLastError(); } -int FileCopyA(const char* aSrc, const char* aDest, bool aFailIfExistsFlag) +int FileCopyA(const char* aSrc, const char* aDest, size_t aFlag) { - // CopyFileA() returns zero on failure and non-zero otherwise. - int err=CopyFileA(aSrc,aDest,aFailIfExistsFlag); - // To maintain consistency with the LINUX wrapper API FileCopyA() which uses cp - // command with system(), we return 0 on success and 1 on failure. - return !err; + int err=CopyFileA(aSrc,aDest,aFlag); + return err; } int FileMoveA(const char* aSrc, const char* aDest) { - // MoveFileA() returns zero on failure and non-zero otherwise. int err=MoveFileA(aSrc,aDest); - // To maintain consistency with the LINUX wrapper API FileMoveA() which uses mv - // command with system(), we return 0 on success and 1 on failure. - return !err; + return err; }