diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-11-26 20:52:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-26 20:52:25 +0100 |
commit | 425991883acafdaf287f9c60b584a49705542642 (patch) | |
tree | c50a2235ba5f31146ae458390b569d8a48e23a21 /src/libstore/download.cc | |
parent | 7c8d7c17f8078f89bdfe4f86a4f0beee1a54be9a (diff) | |
parent | 7c568d4c6e3291f01833aa9cf3779dfdcdaa4505 (diff) |
Merge pull request #3141 from xbreak/nocafile
Downloader: Log configured CA file
Diffstat (limited to 'src/libstore/download.cc')
-rw-r--r-- | src/libstore/download.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/download.cc b/src/libstore/download.cc index 8fe278d02..e80663dff 100644 --- a/src/libstore/download.cc +++ b/src/libstore/download.cc @@ -289,6 +289,7 @@ struct CurlDownloader : public Downloader } if (request.verifyTLS) { + debug("verify TLS: Nix CA file = '%s'", settings.caFile); if (settings.caFile != "") curl_easy_setopt(req, CURLOPT_CAINFO, settings.caFile.c_str()); } else { |