From 330bd8f80d907e8ac9e34d29f27f759a6e35ffda Mon Sep 17 00:00:00 2001 From: Craig Barnes Date: Sat, 21 Nov 2020 20:18:42 +0000 Subject: [PATCH] client: add missing options to getopt_long(3) optstring argument --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index 9ee89415..fe007de4 100644 --- a/client.c +++ b/client.c @@ -78,7 +78,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;