diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2021-10-19 21:42:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 21:42:55 +0200 |
commit | 8db8c8ae34da09dd09453c312fe9ebdac897f73d (patch) | |
tree | 1d345c5d19661e266e919d6f2d9c52133c766c1f /src/lib/protocols/quic.c | |
parent | fea3991ad168ee0a69a35c7be15e0732f2351d56 (diff) |
Fix QUIC log and remove SoulSeek leftovers after b97dc6ba (#1351)
Update .gitignore file
Fix a function prototype
Close #1349
Diffstat (limited to 'src/lib/protocols/quic.c')
-rw-r--r-- | src/lib/protocols/quic.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |