From: Colin Leroy Date: Fri, 25 Apr 2014 13:45:05 +0000 (+0200) Subject: Oups. Fix previous commit. X-Git-Tag: 3.10.0~122^2~3 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=4c7ed56f3b9027689df4a979df26c7ff62c7adf0 Oups. Fix previous commit. --- diff --git a/src/plugins/libravatar/libravatar.c b/src/plugins/libravatar/libravatar.c index 780e9c955..abb2d9a5a 100644 --- a/src/plugins/libravatar/libravatar.c +++ b/src/plugins/libravatar/libravatar.c @@ -147,8 +147,8 @@ static GtkWidget *image_widget_from_url(const gchar *url, const gchar *md5) } curl_easy_setopt(curl, CURLOPT_URL, url); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_image_data_cb); - curl_easy_setopt(eh, CURLOPT_TIMEOUT, prefs_common_get_prefs()->io_timeout_secs); - curl_easy_setopt(eh, CURLOPT_NOSIGNAL, 1); + curl_easy_setopt(curl, CURLOPT_TIMEOUT, prefs_common_get_prefs()->io_timeout_secs); + curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1); filename = cache_name_for_md5(md5); file = fopen(filename, "wb");