diff options
author | João Valverde <j@v6e.pt> | 2021-09-29 18:32:28 +0100 |
---|---|---|
committer | Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org> | 2021-09-30 13:59:28 +0000 |
commit | 5362d0c31b83fd7eb812f3215918504496c2f56a (patch) | |
tree | 8db56bb5b91a21371aeda3cbb273c953b851f522 /extcap/sdjournal.c | |
parent | 0173ea0ec1f87f2ab40c45eedb0ca1c1f77eea8e (diff) | |
download | wireshark-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/sdjournal.c')
-rw-r--r-- | extcap/sdjournal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extcap/sdjournal.c b/extcap/sdjournal.c index 40f9efe94b..eefd6ea7c2 100644 --- a/extcap/sdjournal.c +++ b/extcap/sdjournal.c @@ -50,11 +50,11 @@ enum { OPT_START_FROM }; -static struct option longopts[] = { +static struct ws_option longopts[] = { EXTCAP_BASE_OPTIONS, - { "help", no_argument, NULL, OPT_HELP}, - { "version", no_argument, NULL, OPT_VERSION}, - { "start-from", required_argument, NULL, OPT_START_FROM}, + { "help", ws_no_argument, NULL, OPT_HELP}, + { "version", ws_no_argument, NULL, OPT_VERSION}, + { "start-from", ws_required_argument, NULL, OPT_START_FROM}, { 0, 0, 0, 0} }; |