aboutsummaryrefslogtreecommitdiffstats
path: root/extcap/etwdump.c
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2021-09-29 18:32:28 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-09-30 13:59:28 +0000
commit5362d0c31b83fd7eb812f3215918504496c2f56a (patch)
tree8db56bb5b91a21371aeda3cbb273c953b851f522 /extcap/etwdump.c
parent0173ea0ec1f87f2ab40c45eedb0ca1c1f77eea8e (diff)
downloadwireshark-5362d0c31b83fd7eb812f3215918504496c2f56a.tar.gz
wireshark-5362d0c31b83fd7eb812f3215918504496c2f56a.tar.bz2
wireshark-5362d0c31b83fd7eb812f3215918504496c2f56a.zip
ws_getopt: Rename struct and macros
This is part of the API and should also be renamed to avoid conflicts.
Diffstat (limited to 'extcap/etwdump.c')
-rw-r--r--extcap/etwdump.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/extcap/etwdump.c b/extcap/etwdump.c
index 29e7499841..8ec5407141 100644
--- a/extcap/etwdump.c
+++ b/extcap/etwdump.c
@@ -41,13 +41,13 @@ enum {
OPT_PARAMS
};
-static struct option longopts[] = {
+static struct ws_option longopts[] = {
EXTCAP_BASE_OPTIONS,
- { "help", no_argument, NULL, OPT_HELP},
- { "version", no_argument, NULL, OPT_VERSION},
- { "iue", optional_argument, NULL, OPT_INCLUDE_UNDECIDABLE_EVENT},
- { "etlfile", required_argument, NULL, OPT_ETLFILE},
- { "params", required_argument, NULL, OPT_PARAMS},
+ { "help", ws_no_argument, NULL, OPT_HELP},
+ { "version", ws_no_argument, NULL, OPT_VERSION},
+ { "iue", ws_optional_argument, NULL, OPT_INCLUDE_UNDECIDABLE_EVENT},
+ { "etlfile", ws_required_argument, NULL, OPT_ETLFILE},
+ { "params", ws_required_argument, NULL, OPT_PARAMS},
{ 0, 0, 0, 0 }
};