aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-11-26 20:52:25 +0100
committerGitHub <noreply@github.com>2019-11-26 20:52:25 +0100
commit425991883acafdaf287f9c60b584a49705542642 (patch)
treec50a2235ba5f31146ae458390b569d8a48e23a21 /src
parent7c8d7c17f8078f89bdfe4f86a4f0beee1a54be9a (diff)
parent7c568d4c6e3291f01833aa9cf3779dfdcdaa4505 (diff)
Merge pull request #3141 from xbreak/nocafile
Downloader: Log configured CA file
Diffstat (limited to 'src')
-rw-r--r--src/libstore/download.cc1
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 {