From bd6189aef0d22011062bde3c26b37297d3860873 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Fri, 23 Jan 2015 13:38:42 +0200 Subject: [PATCH] main: Remove obsolete -S option As there is no handler for -S option, we can remove it. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index fa384a2b..64f7702e 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, "BS:vh", main_options, NULL); + opt = getopt_long(argc, argv, "Bvh", main_options, NULL); if (opt < 0) break;