Skip to content

Commit 8b8e2b8

Browse files
committed
Stop searching for command line switches at first non-argument.
1 parent 6c85206 commit 8b8e2b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BackgroundExec.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ int parse_arguments(int argc, char *argv[])
6666
{"verbose", no_argument, 0, 'v'},
6767
{0, 0, 0, 0 }
6868
};
69-
const char *short_options = "hv";
69+
const char *short_options = "+hv";
7070
bool valid = true;
7171
int next = optind;
7272

0 commit comments

Comments
 (0)