Fix socket option parsing

This commit is contained in:
Martin Lund 2022-04-20 14:59:27 +02:00
parent 45c32f78a8
commit 7096bc3a96

View file

@ -188,7 +188,7 @@ void options_parse(int argc, char *argv[])
int option_index = 0;
/* Parse argument using getopt_long */
c = getopt_long(argc, argv, "b:d:f:s:p:o:net::Ll:S::m:c:vh", long_options, &option_index);
c = getopt_long(argc, argv, "b:d:f:s:p:o:net::Ll::S:m:c:vh", long_options, &option_index);
/* Detect the end of the options */
if (c == -1)