diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-06-19 09:29:21 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-06-19 16:29:39 +0000 |
commit | 6febf9b74046b31b65fe4cfebf34b7d59c9d7a6b (patch) | |
tree | b964410c0d3e82bc5ea3c1bea3c2f08cb6989b4e /ui/commandline.c | |
parent | bb44b48192f2091a81d7f978fb7f615d3cf23c4b (diff) | |
download | wireshark-6febf9b74046b31b65fe4cfebf34b7d59c9d7a6b.tar.gz wireshark-6febf9b74046b31b65fe4cfebf34b7d59c9d7a6b.tar.bz2 wireshark-6febf9b74046b31b65fe4cfebf34b7d59c9d7a6b.zip |
Get rid of an unused variable; set a structure member.
There's no need for the capture_option_specified variable, but we *do*
need to initialize the capture_option_specified member of *param_info
before parsing the flags.
Change-Id: I89d0b8c338c2784742b21ba4e854f702ce491849
Reviewed-on: https://code.wireshark.org/review/16017
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/commandline.c')
-rw-r--r-- | ui/commandline.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/commandline.c b/ui/commandline.c index 49b99f44c7..4e6f28dba8 100644 --- a/ui/commandline.c +++ b/ui/commandline.c @@ -231,6 +231,9 @@ void commandline_capture_options(int argc, char *argv[], commandline_capture_par */ opterr = 0; +#ifndef HAVE_LIBPCAP + param_info->capture_option_specified = FALSE; +#endif while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) { switch (opt) { case 'C': /* Configuration Profile */ |