summaryrefslogtreecommitdiff
path: root/src/net/download.cpp
diff options
context:
space:
mode:
authorDan Sagunov <danilka.pro@gmail.com>2013-11-02 00:01:15 +0400
committerDan Sagunov <danilka.pro@gmail.com>2013-11-02 00:01:15 +0400
commitc2f7ae98d3c321a615cda6946443f5098d9d08bd (patch)
treeb330c943055f7b299b4dd9ea64a440e8be9e94e7 /src/net/download.cpp
parentdd380bf0c3ed3150e57bf4b14d51cae1c206565e (diff)
downloadplus-c2f7ae98d3c321a615cda6946443f5098d9d08bd.tar.gz
plus-c2f7ae98d3c321a615cda6946443f5098d9d08bd.tar.bz2
plus-c2f7ae98d3c321a615cda6946443f5098d9d08bd.tar.xz
plus-c2f7ae98d3c321a615cda6946443f5098d9d08bd.zip
Adding renameFile function for NaCl
Diffstat (limited to 'src/net/download.cpp')
-rw-r--r--src/net/download.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/net/download.cpp b/src/net/download.cpp
index 3ccff63c8..38b8d2873 100644
--- a/src/net/download.cpp
+++ b/src/net/download.cpp
@@ -39,6 +39,10 @@
((LIBCURL_VERSION_MAJOR == (a)) && (LIBCURL_VERSION_MINOR == (b)) && \
(LIBCURL_VERSION_PATCH >= (c))))
+#if defined __native_client__
+#include "utils/files.h"
+#endif
+
#include "debug.h"
const char *DOWNLOAD_ERROR_MESSAGE_THREAD
@@ -360,7 +364,12 @@ int Download::downloadThread(void *ptr)
if (!d->mOptions.cancel)
{
::remove(d->mFileName.c_str());
- ::rename(outFilename.c_str(), d->mFileName.c_str());
+#if defined __native_client__
+ Files::renameFile(
+#else
+ ::rename(
+#endif
+ outFilename.c_str(), d->mFileName.c_str());
// Check if we can open it and no errors were encountered
// during renaming