Skip to content
Snippets Groups Projects
Unverified Commit eb75bc5a authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

Don't retry on CURLE_SSL_CACERT_BADFILE

The certificates won't get any better if we retry.
parent 48687215
No related branches found
No related tags found
No related merge requests found
...@@ -340,6 +340,7 @@ struct CurlDownloader : public Downloader ...@@ -340,6 +340,7 @@ struct CurlDownloader : public Downloader
case CURLE_BAD_FUNCTION_ARGUMENT: case CURLE_BAD_FUNCTION_ARGUMENT:
case CURLE_INTERFACE_FAILED: case CURLE_INTERFACE_FAILED:
case CURLE_UNKNOWN_OPTION: case CURLE_UNKNOWN_OPTION:
case CURLE_SSL_CACERT_BADFILE:
err = Misc; err = Misc;
break; break;
default: // Shut up warnings default: // Shut up warnings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment