aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/gtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/protocols/gtp.c')
-rw-r--r--src/lib/protocols/gtp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/protocols/gtp.c b/src/lib/protocols/gtp.c
index 98d741384..2c8316ac6 100644
--- a/src/lib/protocols/gtp.c
+++ b/src/lib/protocols/gtp.c
@@ -115,12 +115,10 @@ static void ndpi_check_gtp(struct ndpi_detection_module_struct *ndpi_struct, str
void ndpi_search_gtp(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow)
{
- struct ndpi_packet_struct *packet = &flow->packet;
-
NDPI_LOG_DBG(ndpi_struct, "search gtp\n");
/* skip marked packets */
- if(packet->detected_protocol_stack[0] != NDPI_PROTOCOL_GTP)
+ if(flow->detected_protocol_stack[0] != NDPI_PROTOCOL_GTP)
ndpi_check_gtp(ndpi_struct, flow);
}