summaryrefslogtreecommitdiff
path: root/src/net/download.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/download.cpp')
-rw-r--r--src/net/download.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/download.cpp b/src/net/download.cpp
index c3b15cd2b..073990b07 100644
--- a/src/net/download.cpp
+++ b/src/net/download.cpp
@@ -343,6 +343,7 @@ int Download::downloadThread(void *ptr)
addProxy(d->mCurl);
secureCurl(d->mCurl);
}
+ addCommonFlags(d->mCurl);
if ((res = curl_easy_perform(d->mCurl)) != 0 &&
(d->mOptions.cancel == 0u) &&
@@ -608,6 +609,11 @@ void Download::addHeaders(CURL *const curl A_UNUSED)
}
#endif // LIBCURL_VERSION_NUM >= 0x071507
+void Download::addCommonFlags(CURL *const curl)
+{
+ curl_easy_setopt(curl, CURLOPT_STDERR, logger->getFile());
+}
+
void Download::prepareForm(curl_httppost **form, const std::string &fileName)
{
curl_httppost *lastPtr = nullptr;