diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | src/tools/dcpomatic_kdm_cli.cc | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2018-12-10 Carl Hetherington <cth@carlh.net> + + * Accept certificate chains to dcpomatic2_kdm_cli as well + as single certificates. + 2018-12-08 Carl Hetherington <cth@carlh.net> * Prototype system to allow in-place translations. diff --git a/src/tools/dcpomatic_kdm_cli.cc b/src/tools/dcpomatic_kdm_cli.cc index b258d68f1..84eb989ee 100644 --- a/src/tools/dcpomatic_kdm_cli.cc +++ b/src/tools/dcpomatic_kdm_cli.cc @@ -504,7 +504,8 @@ int main (int argc, char* argv[]) case 'C': { /* Make a new screen and add it to the current cinema */ - shared_ptr<Screen> screen (new Screen (screen_description, dcp::Certificate (dcp::file_to_string (optarg)), vector<TrustedDevice>())); + dcp::CertificateChain chain (dcp::file_to_string(optarg)); + shared_ptr<Screen> screen (new Screen (screen_description, chain.leaf(), vector<TrustedDevice>())); if (cinema) { cinema->add_screen (screen); } |
