From: David Steele Date: Fri, 12 Jan 2018 14:19:42 +0000 (+0000) Subject: Merge "DALi Version 1.3.7" into devel/master X-Git-Tag: dali_1.3.8~6 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=commitdiff_plain;h=1581ff18ed918e804f9776f33c15e31531314430;hp=a939a3683394ac17794c0e01be738902b686a17d Merge "DALi Version 1.3.7" into devel/master --- diff --git a/platform-abstractions/tizen/resource-loader/network/file-download.cpp b/platform-abstractions/tizen/resource-loader/network/file-download.cpp index 1908597..b276678 100755 --- a/platform-abstractions/tizen/resource-loader/network/file-download.cpp +++ b/platform-abstractions/tizen/resource-loader/network/file-download.cpp @@ -63,7 +63,7 @@ void ConfigureCurlOptions( CURL* curlHandle, const std::string& url ) curl_easy_setopt( curlHandle, CURLOPT_VERBOSE, VERBOSE_MODE ); // CURLOPT_FAILONERROR is not fail-safe especially when authentication is involved ( see manual ) - curl_easy_setopt( curlHandle, CURLOPT_FAILONERROR, CLOSE_CONNECTION_ON_ERROR ); + // Removed CURLOPT_FAILONERROR option curl_easy_setopt( curlHandle, CURLOPT_CONNECTTIMEOUT, CONNECTION_TIMEOUT_SECONDS ); curl_easy_setopt( curlHandle, CURLOPT_HEADER, INCLUDE_HEADER ); curl_easy_setopt( curlHandle, CURLOPT_NOBODY, EXCLUDE_BODY );