From 47263daa72d56bb231a7b793a1f63e329eca4afd Mon Sep 17 00:00:00 2001 From: csoler Date: Sun, 2 Nov 2014 12:47:50 +0000 Subject: [PATCH] fixed saving of bdboot.txt on windows (patch from electron) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7657 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- libbitdht/src/util/bdfile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbitdht/src/util/bdfile.cc b/libbitdht/src/util/bdfile.cc index 9157041d5..48db4a232 100644 --- a/libbitdht/src/util/bdfile.cc +++ b/libbitdht/src/util/bdfile.cc @@ -17,7 +17,7 @@ bool bdFile::renameFile(const std::string& from, const std::string& to) { int loops = 0; -#ifdef WINDOWS_SYS +#ifdef WIN32 std::wstring f; librs::util::ConvertUtf8ToUtf16(from, f); std::wstring t;