From a61e8ebada7ebbc1bd31a74f018e795450d738d9 Mon Sep 17 00:00:00 2001 From: Sascha Kruse Date: Mon, 14 Nov 2011 20:26:00 +0100 Subject: [PATCH] reintroduced -v This one was forgotten in the rewrite of the option parsing --- dunst.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dunst.c b/dunst.c index c1f967a..65fbd41 100644 --- a/dunst.c +++ b/dunst.c @@ -547,7 +547,7 @@ main(int argc, char *argv[]) { int option_index = 0; - c = getopt_long_only(argc, argv, "bh", long_options, &option_index); + c = getopt_long_only(argc, argv, "bhv", long_options, &option_index); if(c == -1) { break; @@ -628,6 +628,9 @@ main(int argc, char *argv[]) { fprintf(stderr, "See manpage for list of available masks\n"); } break; + case 'v': + verbose = True; + break; default: usage(EXIT_FAILURE); break;