From 6febf9b74046b31b65fe4cfebf34b7d59c9d7a6b Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 19 Jun 2016 09:29:21 -0700 Subject: 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 --- ui/commandline.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ui/commandline.c') 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 */ -- cgit v1.2.1