summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-31 14:04:43 +0100
committerCarl Hetherington <cth@carlh.net>2014-03-31 14:04:43 +0100
commit8f9c5e06afd3c0255ed484a495b1ddad7fd83205 (patch)
tree9882905856c2a47822d79623d340d8e858645697 /src/lib
parente4726e282a56477a662be0ff1f8f964ba9411fa7 (diff)
A few KDM dialog fixes.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/internet.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/internet.cc b/src/lib/internet.cc
index 16fd67244..c3f9dce65 100644
--- a/src/lib/internet.cc
+++ b/src/lib/internet.cc
@@ -55,6 +55,7 @@ get_from_zip_url (string url, string file, function<void (boost::filesystem::pat
FILE* f = temp_zip.open ("wb");
curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, get_from_zip_url_data);
curl_easy_setopt (curl, CURLOPT_WRITEDATA, f);
+ curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0);
CURLcode const cr = curl_easy_perform (curl);