diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-03-26 23:59:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-03-27 01:42:04 +0100 |
| commit | 2ef30cbe66ca819588bf43d892223ed9864c0e9a (patch) | |
| tree | 6528f5abdbb2f3bcf8d764b0e049af5006030f59 /src/dcp.cc | |
| parent | 045a37dc877aecf907a517b0ec62a79efbf63f89 (diff) | |
Introduce and use dcp::Profile.v1.10.18
This replaces the specific flags passed to DCP::write(), is a property
of the CPL (where it seems to belong) and allows us to write what I hear
is the correct metadata for this mythical Bv2.0 that somebody invented.
Diffstat (limited to 'src/dcp.cc')
| -rw-r--r-- | src/dcp.cc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -451,7 +451,6 @@ DCP::write_volindex (Standard standard) const void DCP::write_xml( shared_ptr<const CertificateChain> signer, - bool include_mca_subdescriptors, NameFormat name_format, optional<string> group_id ) @@ -473,7 +472,7 @@ DCP::write_xml( for (auto i: cpls()) { NameFormat::Map values; values['t'] = "cpl"; - i->write_xml(_directory / (name_format.get(values, "_" + i->id() + ".xml")), signer, include_mca_subdescriptors); + i->write_xml(_directory / (name_format.get(values, "_" + i->id() + ".xml")), signer); } if (_pkls.empty()) { |
