summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Campagna <gcampagna@src.gnome.org>2014-09-29 22:43:03 -0700
committerGiovanni Campagna <gcampagna@src.gnome.org>2014-09-29 22:44:42 -0700
commit974e1f0a23880d2dd3c006d93f766c0d96eab2d4 (patch)
tree3326b154140cbe007cc15097ede9bc9e6b7f39f5
parente6ea4efcf3237a624e327d4b2b4ef8b1f0597b53 (diff)
downloadlibgweather-974e1f0a23880d2dd3c006d93f766c0d96eab2d4.tar.gz
Use https for yahoo weather backend
Improves privacy. https://bugzilla.gnome.org/show_bug.cgi?id=737566
-rw-r--r--libgweather/weather-yahoo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgweather/weather-yahoo.c b/libgweather/weather-yahoo.c
index a44ae21..06fc1d9 100644
--- a/libgweather/weather-yahoo.c
+++ b/libgweather/weather-yahoo.c
@@ -278,7 +278,7 @@ yahoo_start_open (GWeatherInfo *info)
weather.c expects). They're converted to user preferences before
displaying.
*/
- url = g_strdup_printf("http://weather.yahooapis.com/forecastrss?w=%s&u=f", loc->yahoo_id);
+ url = g_strdup_printf("https://weather.yahooapis.com/forecastrss?w=%s&u=f", loc->yahoo_id);
message = soup_message_new ("GET", url);
_gweather_info_begin_request (info, message);