commit 23a3e906b2191571dce8fea9aec5fad6c76d11af
parent 7c5efcb9a59ad866b4f9ae1fa2f728502c9429cf
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Tue, 30 Jun 2015 14:46:32 +0200
RSSyl: Variable typo fix in Windows-specific code.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c
@@ -195,7 +195,7 @@ RFetchCtx *rssyl_prep_fetchctx_from_url(gchar *url)
feed_set_cookies_path(ctx->feed, rssyl_prefs_get()->cookies_path);
feed_set_ssl_verify_peer(ctx->feed, rssyl_prefs_get()->ssl_verify_peer);
#ifdef G_OS_WIN32
- if (!g_ascii_strncasecmp(ritem->url, "https", 5)) {
+ if (!g_ascii_strncasecmp(url, "https", 5)) {
feed_set_cacert_file(ctx->feed, claws_ssl_get_cert_file());
debug_print("RSSyl: using cert file '%s'\n", feed_get_cacert_file(ctx->feed));
}