aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-07-25 13:51:14 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2017-07-28 13:45:49 +0000
commit5f1131cae292188a66611be1569834c6e21c7a97 (patch)
treee4a5f8a10b61992207ce67eec635f0952f8567f3 /example
parentf664aee00b9610509f8bb217a9c0c6c209e0ea91 (diff)
ndpiReader: fix file_first_time/_statsFilePath defined but not used [-Werror=unused-variable]
Diffstat (limited to 'example')
-rw-r--r--example/ndpiReader.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c
index bcab28568..36d217a30 100644
--- a/example/ndpiReader.c
+++ b/example/ndpiReader.c
@@ -64,8 +64,8 @@ static FILE *results_file = NULL;
static char *results_path = NULL;
static char * bpfFilter = NULL; /**< bpf filter */
static char *_protoFilePath = NULL; /**< Protocol file path */
-static char *_statsFilePath = NULL; /**< Top stats file path */
#ifdef HAVE_JSON_C
+static char *_statsFilePath = NULL; /**< Top stats file path */
static char *_diagnoseFilePath = NULL; /**< Top stats file path */
static char *_jsonFilePath = NULL; /**< JSON file path */
static FILE *stats_fp = NULL; /**< for Top Stats JSON file */
@@ -78,7 +78,10 @@ static u_int8_t live_capture = 0;
static u_int8_t undetected_flows_deleted = 0;
/** User preferences **/
static u_int8_t enable_protocol_guess = 1, verbose = 0, nDPI_traceLevel = 0, json_flag = 0;
-static u_int8_t stats_flag = 0, file_first_time = 1, bpf_filter_flag = 0;
+static u_int8_t stats_flag = 0, bpf_filter_flag = 0;
+#ifdef HAVE_JSON_C
+static u_int8_t file_first_time = 1;
+#endif
static u_int32_t pcap_analysis_duration = (u_int32_t)-1;
static u_int16_t decode_tunnels = 0;
static u_int16_t num_loops = 1;