diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-14 13:33:06 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-14 13:33:06 +0000 |
commit | a1d44f2746955abbf170f407f6613e3bddae3225 (patch) | |
tree | 7e8f62679d3449bec90b1c3552a6ac6514261247 /src/common/updates.cpp | |
parent | download: SSL suport (diff) | |
download | monero-a1d44f2746955abbf170f407f6613e3bddae3225.tar.xz |
updates: use https for updates
Diffstat (limited to 'src/common/updates.cpp')
-rw-r--r-- | src/common/updates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/updates.cpp b/src/common/updates.cpp index 141330c2c..faad56367 100644 --- a/src/common/updates.cpp +++ b/src/common/updates.cpp @@ -98,7 +98,7 @@ namespace tools std::string get_update_url(const std::string &software, const std::string &subdir, const std::string &buildtag, const std::string &version, bool user) { - const char *base = user ? "https://downloads.getmonero.org/" : "http://updates.getmonero.org/"; + const char *base = user ? "https://downloads.getmonero.org/" : "https://updates.getmonero.org/"; #ifdef _WIN32 static const char *extension = strncmp(buildtag.c_str(), "install-", 8) ? ".zip" : ".exe"; #else |