Merge pull request #3180 from jcrd/fix-getopt-2
Make 's' getopt flag take an argument
This commit is contained in:
commit
d06069e5dc
|
@ -423,7 +423,7 @@ options_check_args(int argc, char **argv, int *init_flags, string_array_t *paths
|
||||||
char *confpath = NULL;
|
char *confpath = NULL;
|
||||||
int opt;
|
int opt;
|
||||||
|
|
||||||
while((opt = getopt_long(argc, argv, "vhfkc:armsl:",
|
while((opt = getopt_long(argc, argv, "vhfkc:arms:l:",
|
||||||
long_options, NULL)) != -1) {
|
long_options, NULL)) != -1) {
|
||||||
switch(opt)
|
switch(opt)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue