1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 21:51:50 +02:00

Shut up some warnings

This commit is contained in:
Eelco Dolstra 2017-04-14 14:42:20 +02:00
parent dd3714f6ef
commit f8a2e8a552
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
6 changed files with 17 additions and 13 deletions

View file

@ -369,7 +369,7 @@ struct CurlDownloader : public Downloader
curl_multi_setopt(curlm, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);
#endif
curl_multi_setopt(curlm, CURLMOPT_MAX_TOTAL_CONNECTIONS,
settings.binaryCachesParallelConnections);
settings.binaryCachesParallelConnections.get());
enableHttp2 = settings.enableHttp2;