Fix building against older curl versions

http://hydra.nixos.org/build/49490928
This commit is contained in:
Eelco Dolstra 2017-02-28 14:03:43 +01:00
parent fd86dd93dd
commit 0780805246
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -275,7 +275,10 @@ struct CurlDownloader : public Downloader
|| httpStatus == 504 || httpStatus == 522 || httpStatus == 524
|| code == CURLE_COULDNT_RESOLVE_HOST
|| code == CURLE_RECV_ERROR
|| code == CURLE_HTTP2_STREAM) ? Transient :
#if LIBCURL_VERSION_NUM >= 0x073200
|| code == CURLE_HTTP2_STREAM
#endif
) ? Transient :
Misc;
attempt++;