forked from lix-project/lix
Don't retry on CURLE_SSL_CACERT_BADFILE
The certificates won't get any better if we retry.
This commit is contained in:
parent
4868721506
commit
eb75bc5afb
|
@ -340,6 +340,7 @@ struct CurlDownloader : public Downloader
|
|||
case CURLE_BAD_FUNCTION_ARGUMENT:
|
||||
case CURLE_INTERFACE_FAILED:
|
||||
case CURLE_UNKNOWN_OPTION:
|
||||
case CURLE_SSL_CACERT_BADFILE:
|
||||
err = Misc;
|
||||
break;
|
||||
default: // Shut up warnings
|
||||
|
|
Loading…
Reference in a new issue