aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-22 09:07:24 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-22 09:08:35 +0000
commit72d40f13a40bc23e86cd163053547ea779ab1c06 (patch)
tree3579f77104b39a2d33b82e26198a9075b9ba8635 /src
parentMerge pull request #1773 (diff)
downloadmonero-72d40f13a40bc23e86cd163053547ea779ab1c06.tar.xz
updates: use HTTP, not HTTPS
The files are hashed and the hashes signed
Diffstat (limited to 'src')
-rw-r--r--src/common/updates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/updates.cpp b/src/common/updates.cpp
index c84566f57..2140aeaa7 100644
--- a/src/common/updates.cpp
+++ b/src/common/updates.cpp
@@ -96,7 +96,7 @@ namespace tools
std::string get_update_url(const std::string &software, const std::string &subdir, const std::string &buildtag, const std::string &version)
{
- static const char base[] = "https://updates.getmonero.org/";
+ static const char base[] = "http://updates.getmonero.org/";
#ifdef _WIN32
static const char extension[] = ".zip";
#else