aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/http.c
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2023-11-29 17:13:00 +0100
committerGitHub <noreply@github.com>2023-11-29 17:13:00 +0100
commit3b35cb37d9b12d3fe3386e9d3f60ab46076d3fbc (patch)
tree3cf19bde0e542ee8bf7467a7d545ff8ebcb8fdab /src/lib/protocols/http.c
parentac90b1f00910a33d9104d0470429bb8244a49cc9 (diff)
Keep separating public and private API (#2157)
See: b08c787fe
Diffstat (limited to 'src/lib/protocols/http.c')
-rw-r--r--src/lib/protocols/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c
index ee0c61591..68ba42561 100644
--- a/src/lib/protocols/http.c
+++ b/src/lib/protocols/http.c
@@ -60,7 +60,7 @@ static void ndpi_set_binary_application_transfer(struct ndpi_detection_module_st
/*
Check known exceptions
*/
- if(ndpi_ends_with(ndpi_struct, (char*)flow->host_server_name, ".windowsupdate.com"))
+ if(ends_with(ndpi_struct, (char*)flow->host_server_name, ".windowsupdate.com"))
;
else
ndpi_set_risk(ndpi_struct, flow, NDPI_BINARY_APPLICATION_TRANSFER, msg);