From f861f397112ddaa609ac7525578ab81988e43e50 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Thu, 5 Jun 2008 16:35:33 +0000 Subject: [PATCH] maybe fix the tracker authentication problems reported by demio --- libtransmission/web.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libtransmission/web.c b/libtransmission/web.c index 4899b6be3..feafdb78e 100644 --- a/libtransmission/web.c +++ b/libtransmission/web.c @@ -147,6 +147,7 @@ addTask( void * vtask ) curl_easy_setopt( ch, CURLOPT_WRITEFUNCTION, writeFunc ); curl_easy_setopt( ch, CURLOPT_WRITEDATA, task ); curl_easy_setopt( ch, CURLOPT_USERAGENT, TR_NAME "/" LONG_VERSION_STRING ); + curl_easy_setopt( ch, CURLOPT_SSL_VERIFYHOST, 0 ); curl_easy_setopt( ch, CURLOPT_SSL_VERIFYPEER, 0 ); curl_easy_setopt( ch, CURLOPT_FORBID_REUSE, 1 ); curl_easy_setopt( ch, CURLOPT_NOSIGNAL, 1 );