From 8db8c8ae34da09dd09453c312fe9ebdac897f73d Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Tue, 19 Oct 2021 21:42:55 +0200 Subject: Fix QUIC log and remove SoulSeek leftovers after b97dc6ba (#1351) Update .gitignore file Fix a function prototype Close #1349 --- src/lib/protocols/quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/protocols/quic.c') diff --git a/src/lib/protocols/quic.c b/src/lib/protocols/quic.c index af19fe7ea..206c3b951 100644 --- a/src/lib/protocols/quic.c +++ b/src/lib/protocols/quic.c @@ -1474,7 +1474,7 @@ static int may_be_initial_pkt(struct ndpi_detection_module_struct *ndpi_struct, grease_quic_bit transport parameter." */ if((*version & 0x0F0F0F0F) == 0x0a0a0a0a && !(pub_bit1 == 1 && pub_bit2 == 1)) { - NDPI_LOG_DBG2(ndpi_struct, "Version 0x%x with first byte 0x%x\n", first_byte); + NDPI_LOG_DBG2(ndpi_struct, "Version 0x%x with first byte 0x%x\n", *version, first_byte); return 0; } -- cgit v1.2.3