From: Steinar H. Gunderson Date: Sun, 31 Jul 2016 13:56:42 +0000 (+0200) Subject: Remove the -C flag from the getopt string. X-Git-Tag: 1.3.4~7 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=717b457347c7aa4cc70452be79e599dbfcfb88b1;p=nageru Remove the -C flag from the getopt string. --- diff --git a/flags.cpp b/flags.cpp index 2ff7d4b..7a047f4 100644 --- a/flags.cpp +++ b/flags.cpp @@ -135,7 +135,7 @@ void parse_flags(int argc, char * const argv[]) vector theme_dirs; for ( ;; ) { int option_index = 0; - int c = getopt_long(argc, argv, "c:C:t:v:m:", long_options, &option_index); + int c = getopt_long(argc, argv, "c:t:v:m:", long_options, &option_index); if (c == -1) { break;