From dba2304d2acb23e3e56c03686f010a7c3f0c2739 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 11 Jul 2016 20:23:34 +0200 Subject: [PATCH] Add missing short options. --- flags.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flags.cpp b/flags.cpp index 06add31..33d47b9 100644 --- a/flags.cpp +++ b/flags.cpp @@ -78,7 +78,7 @@ void parse_flags(int argc, char * const argv[]) }; for ( ;; ) { int option_index = 0; - int c = getopt_long(argc, argv, "c:t:", long_options, &option_index); + int c = getopt_long(argc, argv, "c:t:v:m:", long_options, &option_index); if (c == -1) { break; -- 2.39.2