diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-03-01 19:41:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-03-01 19:41:09 +0100 |
| commit | b3787f9db738723bdb15a2a86feeb84f1b6d593c (patch) | |
| tree | d30825fd5c5c35f500045b69821814eb098f8ed3 /src/dcp.cc | |
| parent | e2b29fb7033ff554988ce1bfc781822a821cfa15 (diff) | |
Add include_mca_subdescriptors to DCP::write_xml(), passing it through to the CPL.
Diffstat (limited to 'src/dcp.cc')
| -rw-r--r-- | src/dcp.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -400,7 +400,7 @@ DCP::write_volindex (Standard standard) const void -DCP::write_xml (shared_ptr<const CertificateChain> signer, NameFormat name_format) +DCP::write_xml(shared_ptr<const CertificateChain> signer, bool include_mca_subdescriptors, NameFormat name_format) { if (_cpls.empty()) { throw MiscError ("Cannot write DCP with no CPLs."); @@ -419,7 +419,7 @@ DCP::write_xml (shared_ptr<const CertificateChain> signer, NameFormat name_forma for (auto i: cpls()) { NameFormat::Map values; values['t'] = "cpl"; - i->write_xml (_directory / (name_format.get(values, "_" + i->id() + ".xml")), signer); + i->write_xml(_directory / (name_format.get(values, "_" + i->id() + ".xml")), signer, include_mca_subdescriptors); } if (_pkls.empty()) { |
