From b1a6c6b8957b62ec8ada423abfdcfa5471c00147 Mon Sep 17 00:00:00 2001 From: Nardi Ivan Date: Wed, 15 Apr 2020 18:07:24 +0200 Subject: Fix some compilation warnings --- example/reader_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'example/reader_util.c') diff --git a/example/reader_util.c b/example/reader_util.c index 73d580cc1..db18496c7 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1210,7 +1210,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, u_int8_t *payload; u_int8_t src_to_dst_direction = 1; u_int8_t begin_or_end_tcp = 0; - struct ndpi_proto nproto = { NDPI_PROTOCOL_UNKNOWN, NDPI_PROTOCOL_UNKNOWN }; + struct ndpi_proto nproto = NDPI_PROTOCOL_NULL; if(iph) flow = get_ndpi_flow_info(workflow, IPVERSION, vlan_id, @@ -1441,7 +1441,7 @@ struct ndpi_proto ndpi_workflow_process_packet(struct ndpi_workflow * workflow, /** --- IPv6 header --- **/ struct ndpi_ipv6hdr *iph6; - struct ndpi_proto nproto = { NDPI_PROTOCOL_UNKNOWN, NDPI_PROTOCOL_UNKNOWN }; + struct ndpi_proto nproto = NDPI_PROTOCOL_NULL; ndpi_packet_tunnel tunnel_type = ndpi_no_tunnel; /* lengths and offsets */ -- cgit v1.2.3