diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-02-16T12·55+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-02-16T12·55+0100 |
commit | 40f0e3b366458a6f1bc09a366a218abf13a1af1e (patch) | |
tree | c31afb8a71f7b40537deb09a155c605765a834be /src | |
parent | d1139ff36b5df48ddf76600ad17e59a9d1dcd46a (diff) |
Include "curl" in the User-Agent header
Some sites (e.g. BitBucket) give a helpful 401 error when trying to download a private archive if the User-Agent contains "curl", but give a redirect to a login page otherwise (so for instance "nix-prefetch-url" will succeed but produce useless output).
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/download.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/download.cc b/src/libstore/download.cc index f93fb1e968a9..d65ac7b873dc 100644 --- a/src/libstore/download.cc +++ b/src/libstore/download.cc @@ -201,7 +201,7 @@ struct CurlDownloader : public Downloader curl_easy_setopt(req, CURLOPT_URL, request.uri.c_str()); curl_easy_setopt(req, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(req, CURLOPT_NOSIGNAL, 1); - curl_easy_setopt(req, CURLOPT_USERAGENT, ("Nix/" + nixVersion).c_str()); + curl_easy_setopt(req, CURLOPT_USERAGENT, ("curl/" LIBCURL_VERSION " Nix/" + nixVersion).c_str()); #if LIBCURL_VERSION_NUM >= 0x072b00 curl_easy_setopt(req, CURLOPT_PIPEWAIT, 1); #endif |