summaryrefslogtreecommitdiff
path: root/src/verify.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-28 01:25:57 +0100
committerCarl Hetherington <cth@carlh.net>2024-04-14 22:48:35 +0200
commitd1dd43787960cd7974e24be5f8d73fe83a0e6c9a (patch)
tree3fae75b0aeb25ee7c6d49fe0befd793065f90cc6 /src/verify.cc
parentd5aa7509cd1b50be5b6a929e00a2572b30585629 (diff)
Make verified DCPs available on the return from dcp::verify().
Diffstat (limited to 'src/verify.cc')
-rw-r--r--src/verify.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify.cc b/src/verify.cc
index ba0007db..0003e0a6 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -1810,7 +1810,7 @@ verify_assetmap(Context& context, shared_ptr<const DCP> dcp)
}
-vector<VerificationNote>
+dcp::VerifyResult
dcp::verify (
vector<boost::filesystem::path> directories,
vector<dcp::DecryptedKDM> kdms,
@@ -1891,7 +1891,7 @@ dcp::verify (
}
}
- return notes;
+ return { notes, dcps };
}