From fb8dccf179e4e4a0777d1a948bd13dc1d91a4822 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Fri, 9 May 2008 04:00:14 +0000 Subject: [PATCH] undo the curl timeout option from earlier today --- libtransmission/web.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libtransmission/web.c b/libtransmission/web.c index 3a49795d7..4899b6be3 100644 --- a/libtransmission/web.c +++ b/libtransmission/web.c @@ -142,7 +142,6 @@ addTask( void * vtask ) dbgmsg( "adding task #%lu [%s] (%d remain)", task->tag, task->url, web->remain ); ch = curl_easy_init( ); - curl_easy_setopt( ch, CURLOPT_TIMEOUT, 120 ); curl_easy_setopt( ch, CURLOPT_PRIVATE, task ); curl_easy_setopt( ch, CURLOPT_URL, task->url ); curl_easy_setopt( ch, CURLOPT_WRITEFUNCTION, writeFunc );