From e9e5881519af0a9bb0aef254d513b743c88f994c Mon Sep 17 00:00:00 2001 From: riban Date: Sun, 7 Jul 2024 09:30:44 +0100 Subject: [PATCH] Fixes #79. Add 't' short option. --- src/mod-host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod-host.c b/src/mod-host.c index 4b4d5d9..cd005cd 100644 --- a/src/mod-host.c +++ b/src/mod-host.c @@ -776,7 +776,7 @@ int main(int argc, char **argv) /* parse command line options */ int nofork = 0, verbose = 0, interactive = 0, selftest = 0; int socket_port = SOCKET_DEFAULT_PORT, feedback_port = 0; - while ((opt = getopt_long(argc, argv, "nvp:f:iVh", long_options, &opt_index)) != -1) + while ((opt = getopt_long(argc, argv, "nvp:f:itVh", long_options, &opt_index)) != -1) { switch (opt) {