Add additional debug to fetch errors from cURL

svn path=/trunk/netsurf/; revision=5174
This commit is contained in:
Daniel Silverstone 2008-08-22 11:10:33 +00:00
parent 5131783921
commit ac427e05e5

View File

@ -798,8 +798,10 @@ void fetch_curl_done(CURL *curl_handle, CURLcode result)
cert = true;
}
#endif
else
error = true;
else {
LOG(("Unknown cURL response code %d", result));
error = true;
}
fetch_curl_stop(f);