aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-fetch.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-02-13 23:31:05 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-02-15 12:12:30 +0300
commit0e1deb6510594c896804b7409e2f33fd2d035e3d (patch)
tree5b5fbeaeceaa6720416ceb9a6ca79e5cab49e578 /bpkg/rep-fetch.cxx
parentfbc7f6db25c322ea0da0a13d080d07b84f8bc497 (diff)
Adapt to package/repository manifests API change
Diffstat (limited to 'bpkg/rep-fetch.cxx')
-rw-r--r--bpkg/rep-fetch.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bpkg/rep-fetch.cxx b/bpkg/rep-fetch.cxx
index 6ed62ab..d7f0386 100644
--- a/bpkg/rep-fetch.cxx
+++ b/bpkg/rep-fetch.cxx
@@ -27,10 +27,10 @@ namespace bpkg
// First fetch the repositories list and authenticate the base's
// certificate.
//
- pair<repository_manifests, string /* checksum */> rmc (
+ pair<bpkg_repository_manifests, string /* checksum */> rmc (
bpkg_fetch_repositories (co, rl, ignore_unknown));
- repository_manifests& rms (rmc.first);
+ bpkg_repository_manifests& rms (rmc.first);
bool a (co.auth () != auth::none &&
(co.auth () == auth::all || rl.remote ()));
@@ -47,10 +47,10 @@ namespace bpkg
// Now fetch the packages list and make sure it matches the repositories
// we just fetched.
//
- pair<package_manifests, string /* checksum */> pmc (
+ pair<bpkg_package_manifests, string /* checksum */> pmc (
bpkg_fetch_packages (co, rl, ignore_unknown));
- package_manifests& pms (pmc.first);
+ bpkg_package_manifests& pms (pmc.first);
if (rmc.second != pms.sha256sum)
fail << "repositories manifest file checksum mismatch for "