summaryrefslogtreecommitdiff
path: root/src/wx/christie_certificate_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-04-29 21:59:33 +0100
committerCarl Hetherington <cth@carlh.net>2019-04-29 21:59:33 +0100
commit6a92ad180163bf84aeedc5f955edc13557e6848c (patch)
tree7bbb45618676660707d121dc87087830d043e36f /src/wx/christie_certificate_panel.cc
parent851f17048f25a010818db5569e7cd52755dd0604 (diff)
Ignore the (unrouteable) FTP passive-mode IP address given byv2.13.157
the Dolby certificate server (#1541).
Diffstat (limited to 'src/wx/christie_certificate_panel.cc')
-rw-r--r--src/wx/christie_certificate_panel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/christie_certificate_panel.cc b/src/wx/christie_certificate_panel.cc
index fa91cc2b5..9e95aa994 100644
--- a/src/wx/christie_certificate_panel.cc
+++ b/src/wx/christie_certificate_panel.cc
@@ -57,13 +57,13 @@ ChristieCertificatePanel::do_download ()
optional<string> all_errors;
- optional<string> error = get_from_url (url, true, boost::bind (&DownloadCertificatePanel::load, this, _1));
+ optional<string> error = get_from_url (url, true, false, boost::bind (&DownloadCertificatePanel::load, this, _1));
if (error) {
all_errors = *error;
string const url = String::compose ("%1IMB-S2/IMB-S2_%2_sha256.pem", prefix, serial);
- error = get_from_url (url, true, boost::bind (&DownloadCertificatePanel::load, this, _1));
+ error = get_from_url (url, true, false, boost::bind (&DownloadCertificatePanel::load, this, _1));
if (error) {
*all_errors += "\n" + *error;
}