diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2016-11-13 17:35:36 +0100 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2016-11-13 18:22:03 +0100 |
commit | 65f61fd5b1ff03951a2adfa12e4e34ab726b0f12 (patch) | |
tree | a48e04b0879e529866c01758775296450623a99b /src/lib/protocols/rx.c | |
parent | 57ad066e662f18da18c3690e833ae9c32e727904 (diff) |
rx: fix unused variable 'found' [-Wunused-variable]
Diffstat (limited to 'src/lib/protocols/rx.c')
-rw-r--r-- | src/lib/protocols/rx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/protocols/rx.c b/src/lib/protocols/rx.c index 9d27d5e18..e5ae25476 100644 --- a/src/lib/protocols/rx.c +++ b/src/lib/protocols/rx.c @@ -78,8 +78,6 @@ void ndpi_check_rx(struct ndpi_detection_module_struct *ndpi_struct, { struct ndpi_packet_struct *packet = &flow->packet; u_int32_t payload_len = packet->payload_packet_len; - int found = 0; - NDPI_LOG(NDPI_PROTOCOL_RX, ndpi_struct, NDPI_LOG_DEBUG, "RX: pck: %d, dir[0]: %d, dir[1]: %d\n", flow->packet_counter, flow->packet_direction_counter[0], flow->packet_direction_counter[1]); |