From 9c380ad95c343e778e914cf6be2f2fda9cc007b0 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Fri, 23 Jan 2015 13:38:41 +0200 Subject: [PATCH] main: DBus debug option -B was missing It was not possible to activate DBus debugging. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index a8b7f35c..fa384a2b 100644 --- a/src/main.c +++ b/src/main.c @@ -76,7 +76,7 @@ int main(int argc, char *argv[]) for (;;) { int opt; - opt = getopt_long(argc, argv, "S:vh", main_options, NULL); + opt = getopt_long(argc, argv, "BS:vh", main_options, NULL); if (opt < 0) break;