From 0e1deb6510594c896804b7409e2f33fd2d035e3d Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 13 Feb 2018 23:31:05 +0300 Subject: Adapt to package/repository manifests API change --- bpkg/rep-fetch.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bpkg/rep-fetch.cxx') 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 rmc ( + pair 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 pmc ( + pair 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 " -- cgit v1.1