From a9e5820a3454f27cdb388f988f21d154aa2c9cce Mon Sep 17 00:00:00 2001 From: Cesare Tirabassi Date: Tue, 2 Mar 2010 20:26:59 +0100 Subject: [PATCH] Fix sf: #2961602 Add missing --quiet option and optional arguments to --pause and --interval --- src/conky.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/conky.c b/src/conky.c index 97a8a2a..b08df7c 100644 --- a/src/conky.c +++ b/src/conky.c @@ -5562,6 +5562,7 @@ static const char *getopt_string = "vVqdDt:u:i:hc:p:" static const struct option longopts[] = { { "help", 0, NULL, 'h' }, { "version", 0, NULL, 'V' }, + { "quiet", 0, NULL, 'q' }, { "debug", 0, NULL, 'D' }, { "config", 1, NULL, 'c' }, #ifdef CONFIG_OUTPUT @@ -5581,8 +5582,8 @@ static const struct option longopts[] = { { "window-id", 1, NULL, 'w' }, #endif /* X11 */ { "text", 1, NULL, 't' }, - { "interval", 0, NULL, 'u' }, - { "pause", 0, NULL, 'p' }, + { "interval", 1, NULL, 'u' }, + { "pause", 1, NULL, 'p' }, { 0, 0, 0, 0 } }; -- 1.7.9.5