From: Mark Wooding Date: Mon, 8 Jul 2024 00:23:54 +0000 (+0100) Subject: tmpdir.c: Remove mention of unimplemented (and unhelpful) `-t' option. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/checkpath/commitdiff_plain/056e5530ccbb4f63a226363ec065362de9e51213 tmpdir.c: Remove mention of unimplemented (and unhelpful) `-t' option. For some reason it got listed in the short- and long-options lists, but not, fortunately, in the manual or help text. --- diff --git a/tmpdir.c b/tmpdir.c index 7b6fc64..764f9bd 100644 --- a/tmpdir.c +++ b/tmpdir.c @@ -344,11 +344,10 @@ int main(int argc, char *argv[]) { "check", OPTF_ARGREQ, 0, 'C' }, { "verify", OPTF_ARGREQ, 0, 'C' }, { "verbose", 0, 0, 'v' }, - { "trust-groups", 0, 0, 't' }, { "group", OPTF_ARGREQ, 0, 'g' }, { 0, 0, 0, 0 } }; - int i = mdwopt(argc, argv, "hVu" "bcvtg:C:", opts, 0, 0, 0); + int i = mdwopt(argc, argv, "hVu" "bcvg:C:", opts, 0, 0, 0); if (i < 0) break;