fetchurl: fail on error

This commit is contained in:
Boris Mulder 2018-02-26 14:21:46 +01:00 committed by Christian Helmuth
parent 033e333691
commit d15b396202

View File

@ -120,6 +120,7 @@ static int fetchurl(Genode::Xml_node config_node)
curl_easy_setopt(curl, CURLOPT_VERBOSE, verbose);
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, true);
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &fd);