From 7fd808049ad220c5ff29b72ce8bcec8e73a0cbfe 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 --- src/util/bdfile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/bdfile.cc b/src/util/bdfile.cc index 9157041..48db4a2 100644 --- a/src/util/bdfile.cc +++ b/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;