diff options
Diffstat (limited to 'extcap/etl.c')
-rw-r--r-- | extcap/etl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extcap/etl.c b/extcap/etl.c index a4ff72e152..9a74e3ccc9 100644 --- a/extcap/etl.c +++ b/extcap/etl.c @@ -54,10 +54,10 @@ enum { OPT_LEVEL, }; -static struct option longopts[] = { - { "p", required_argument, NULL, OPT_PROVIDER}, - { "k", required_argument, NULL, OPT_KEYWORD}, - { "l", required_argument, NULL, OPT_LEVEL}, +static struct ws_option longopts[] = { + { "p", ws_required_argument, NULL, OPT_PROVIDER}, + { "k", ws_required_argument, NULL, OPT_KEYWORD}, + { "l", ws_required_argument, NULL, OPT_LEVEL}, { 0, 0, 0, 0 } }; |