aboutsummaryrefslogtreecommitdiff
path: root/bpkg/auth.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-09-04 12:38:40 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-09-04 20:35:03 +0300
commitad8d50be4016e68a4ab8d765bd9b45a9fdae1a6d (patch)
tree2fd90cf0434b2c81f69067352aa2c6fcf5af04ec /bpkg/auth.cxx
parent7bb44980ced46506c10bad333f526b7bc62ea1db (diff)
Simplify authenticate_*() and rep_fetch() functions semantics
Diffstat (limited to 'bpkg/auth.cxx')
-rw-r--r--bpkg/auth.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/bpkg/auth.cxx b/bpkg/auth.cxx
index 08f6b11..ca187ed 100644
--- a/bpkg/auth.cxx
+++ b/bpkg/auth.cxx
@@ -644,11 +644,6 @@ namespace bpkg
if (co.trust_no () && co.trust_yes ())
fail << "--trust-yes and --trust-no are mutually exclusive";
- if (conf != nullptr && conf->empty ())
- conf = exists (bpkg_dir) ? &current_dir : nullptr;
-
- assert (conf == nullptr || !conf->empty ());
-
shared_ptr<certificate> r;
if (conf == nullptr)
@@ -694,11 +689,6 @@ namespace bpkg
{
tracer trace ("authenticate_repository");
- if (conf != nullptr && conf->empty ())
- conf = exists (bpkg_dir) ? &current_dir : nullptr;
-
- assert (conf == nullptr || !conf->empty ());
-
path f;
auto_rmfile rm;