From 4574d1c12eec0ff70ac5f3e12f11f7382231289e Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 13 Jul 2010 21:04:11 +0100 Subject: [PATCH] rawlog: Don't steal -options from the program that's going to be run. --- src/util/rawlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/rawlog.c b/src/util/rawlog.c index f859d6fbd8..a608a54d31 100644 --- a/src/util/rawlog.c +++ b/src/util/rawlog.c @@ -370,7 +370,7 @@ int main(int argc, char *argv[]) i_set_failure_internal(); process_title_init(&argv); - while ((c = getopt(argc, argv, "iobt")) > 0) { + while ((c = getopt(argc, argv, "+iobt")) > 0) { switch (c) { case 'i': flags &= ~RAWLOG_FLAG_LOG_OUTPUT; -- 2.47.3