diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-22 19:57:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-02 00:52:27 +0200 |
| commit | 6daf19c7cc360d4f92473d454fbcdd173941b728 (patch) | |
| tree | 4b8511e0f53ffa289d7db45afe7342d3a8901297 | |
| parent | 4ac1d022056cb69a6fadb9c41a625787961029c2 (diff) | |
Rename --trusted-device to --trusted-device-certificate in the KDM CLI.
| -rw-r--r-- | src/lib/kdm_cli.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/kdm_cli.cc b/src/lib/kdm_cli.cc index c5a431289..28b4012ea 100644 --- a/src/lib/kdm_cli.cc +++ b/src/lib/kdm_cli.cc @@ -73,8 +73,8 @@ help (std::function<void (string)> out) out (" -v, --verbose be verbose"); out (" -c, --cinema <name|email> cinema name (when using -C) or name/email (to filter cinemas)"); out (" -S, --screen <name> screen name (when using -C) or screen name (to filter screens when using -c)"); - out (" -T, --trusted-device <file> file containing a trusted device's certificate"); out (" -C, --projector-certificate <file> file containing projector certificate"); + out (" -T, --trusted-device-certificate <file> file containing a trusted device's certificate"); out (" --cinemas-file <file> use the given file as a list of cinemas instead of the current configuration"); out (" --list-cinemas list known cinemas from the DCP-o-matic settings"); out (" --list-dkdm-cpls list CPLs for which DCP-o-matic has DKDMs"); @@ -488,8 +488,8 @@ try { "verbose", no_argument, 0, 'v' }, { "cinema", required_argument, 0, 'c' }, { "screen", required_argument, 0, 'S' }, - { "trusted-device", required_argument, 0, 'T' }, { "projector-certificate", required_argument, 0, 'C' }, + { "trusted-device-certificate", required_argument, 0, 'T' }, { "list-cinemas", no_argument, 0, 'B' }, { "list-dkdm-cpls", no_argument, 0, 'D' }, { "cinemas-file", required_argument, 0, 'E' }, |
