client: add missing options to getopt_long(3) optstring argument

This commit is contained in:
Craig Barnes 2020-11-21 20:18:42 +00:00
parent 0d61a49e47
commit e813883367

View file

@ -79,7 +79,7 @@ main(int argc, char *const *argv)
bool hold = false;
while (true) {
int c = getopt_long(argc, argv, "+t:a:s:l::hv", longopts, NULL);
int c = getopt_long(argc, argv, "+t:T:a:mFLs:Hl::vh", longopts, NULL);
if (c == -1)
break;