diff options
author | Luca Deri <deri@ntop.org> | 2020-02-23 19:09:58 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-02-23 19:09:58 +0100 |
commit | 2ceff3e21471d8948aa2633313646682c21ac95d (patch) | |
tree | 88172caf248f9473901032a3ff5cbc217300fa51 /src | |
parent | dd80ec869ad8991b811e2e13e7cb595e2d56ea64 (diff) |
Fixed swapped protocol
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/protocols/ajp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/ajp.c b/src/lib/protocols/ajp.c index bd86f0c91..beb845382 100644 --- a/src/lib/protocols/ajp.c +++ b/src/lib/protocols/ajp.c @@ -63,7 +63,7 @@ static void set_ajp_detected(struct ndpi_detection_module_struct *ndpi_struct, /* If no custom protocol has been detected */ /* if(flow->detected_protocol_stack[0] == NDPI_PROTOCOL_UNKNOWN) */ ndpi_int_reset_protocol(flow); - ndpi_set_detected_protocol(ndpi_struct, flow, flow->guessed_host_protocol_id, NDPI_PROTOCOL_AJP); + ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_AJP, flow->guessed_host_protocol_id); } } |