From f0887df5c5b5b7fde8f2f44ab788f6c47241dc4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 15 Feb 2020 21:05:53 +0100 Subject: [PATCH] main: bug: -t requires an argument --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 25a51897..2b2006f5 100644 --- a/main.c +++ b/main.c @@ -164,7 +164,7 @@ main(int argc, char *const *argv) bool log_syslog = true; while (true) { - int c = getopt_long(argc, argv, "c:tf:g:s::Pp:l::Svh", longopts, NULL); + int c = getopt_long(argc, argv, "c:t:f:g:s::Pp:l::Svh", longopts, NULL); if (c == -1) break;