summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrossWire Packaging Team <pkg-crosswire-devel@alioth-lists.debian.net>2018-11-01 10:27:07 +0100
committerDaniel Glassey <wdg@debian.org>2018-11-12 23:05:48 +0700
commit052bbc4007d2fb33ce3252fcf78c8f0fbbd1d730 (patch)
tree5ecc801acbfa71df47210658674b36a12470296b
parent7c661e2de10a97068f4fdaeb90a8e1b8308de831 (diff)
_curl
revno: 2452 svn revno: 2506 (on /trunk) committer: scribe timestamp: Sat 2010-03-20 11:49:54 +0000 message: applied Karl's patch to fix libcurl problem with status reporter data. svn revno: 2506 (on /trunk) committer: scribe timestamp: Sat 2010-03-20 11:49:54 +0000 message: applied Karl's patch to fix libcurl problem with status reporter data. Gbp-Pq: Name 0001-13-curl.diff
-rw-r--r--src/mgr/curlftpt.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mgr/curlftpt.cpp b/src/mgr/curlftpt.cpp
index b287405..1bc9eaa 100644
--- a/src/mgr/curlftpt.cpp
+++ b/src/mgr/curlftpt.cpp
@@ -186,6 +186,9 @@ char CURLFTPTransport::getURL(const char *destPath, const char *sourceURL, SWBuf
// it seems CURL tries to use this option data later for some reason, so we unset here
curl_easy_setopt(session, CURLOPT_PROGRESSDATA, (void*)NULL);
+ // it seems CURL tries to use this option data later for some reason, so we unset here
+ curl_easy_setopt(session, CURLOPT_PROGRESSDATA, (void*)NULL);
+
if(CURLE_OK != res) {
retVal = -1;
}