diff options
author | Luca Deri <deri@ntop.org> | 2022-06-05 11:19:28 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2022-06-05 11:19:28 +0200 |
commit | 2202365b951e7469ff805baf5bf631a8d9a9ec8a (patch) | |
tree | 9321ad43daa87ea0a6fd4e179b5fb40bb2e69e9c | |
parent | b6ae9642d359a536e09796102b9fe6fe173169d5 (diff) |
Fixed invalid DHCP dissection
-rw-r--r-- | src/lib/protocols/dhcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/dhcp.c b/src/lib/protocols/dhcp.c index 5c6855e8f..5c59f6999 100644 --- a/src/lib/protocols/dhcp.c +++ b/src/lib/protocols/dhcp.c @@ -186,8 +186,8 @@ void ndpi_search_dhcp_udp(struct ndpi_detection_module_struct *ndpi_struct, } } } - } - NDPI_EXCLUDE_PROTO(ndpi_struct, flow); + } else + NDPI_EXCLUDE_PROTO(ndpi_struct, flow); } |