From: Paul Davis Date: Sun, 10 Mar 2013 16:17:36 +0000 (+0000) Subject: do not use https for pingbacks X-Git-Tag: 3.0 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=refs%2Ftags%2F3.0;p=ardour.git do not use https for pingbacks git-svn-id: svn://localhost/ardour2/branches/3.0@14207 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/gtk2_ardour/pingback.cc b/gtk2_ardour/pingback.cc index c108e5e96e..ed9b23ae26 100644 --- a/gtk2_ardour/pingback.cc +++ b/gtk2_ardour/pingback.cc @@ -88,10 +88,6 @@ _pingback (void *arg) curl_easy_setopt (c, CURLOPT_WRITEDATA, &return_str); char errbuf[CURL_ERROR_SIZE]; curl_easy_setopt (c, CURLOPT_ERRORBUFFER, errbuf); - /* we really would prefer to be able to authenticate the certificate - but this has issues that right now (march 2013), i don't understand. - */ - curl_easy_setopt (c, CURLOPT_SSL_VERIFYPEER, 0); //get announcements from our server std::cerr << "Checking for Announcements from ardour.org ...\n"; diff --git a/libs/ardour/ardour/rc_configuration_vars.h b/libs/ardour/ardour/rc_configuration_vars.h index 1564d01315..711e6fb1af 100644 --- a/libs/ardour/ardour/rc_configuration_vars.h +++ b/libs/ardour/ardour/rc_configuration_vars.h @@ -209,8 +209,8 @@ CONFIG_VARIABLE (bool, show_region_gain, "show-region-gain", false) /* web addresses used in the program */ -CONFIG_VARIABLE (std::string, osx_pingback_url, "osx-pingback-url", "https://community.ardour.org/pingback/osx/") -CONFIG_VARIABLE (std::string, linux_pingback_url, "linux-pingback-url", "https://community.ardour.org/pingback/linux/") +CONFIG_VARIABLE (std::string, osx_pingback_url, "osx-pingback-url", "http://community.ardour.org/pingback/osx/") +CONFIG_VARIABLE (std::string, linux_pingback_url, "linux-pingback-url", "http://community.ardour.org/pingback/linux/") CONFIG_VARIABLE (std::string, tutorial_manual_url, "tutorial-manual-url", "http://ardour.org/flossmanual") CONFIG_VARIABLE (std::string, reference_manual_url, "reference-manual-url", "http://manual.ardour.org/") CONFIG_VARIABLE (std::string, updates_url, "updates-url", "http://ardour.org/whatsnew.html")