aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2025-05-18 20:29:05 +0200
committerGitHub <noreply@github.com>2025-05-18 20:29:05 +0200
commit0200a8026c2d398f6f46c8b01508c7df06b4af41 (patch)
tree21c89f3c88a821ded21870387e6ffaad586ff5e8
parent4ac0b4383db213dabfb26a26d5b7f6338761d056 (diff)
wireshark: lua: small fix (#2823)
-rw-r--r--wireshark/ndpi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/wireshark/ndpi.lua b/wireshark/ndpi.lua
index f0a2ed625..13b69f971 100644
--- a/wireshark/ndpi.lua
+++ b/wireshark/ndpi.lua
@@ -1866,7 +1866,7 @@ function ndpi_proto.dissector(tvb, pinfo, tree)
offset = offset + 4
ndpi_subtree:add(ndpi_fds.network_protocol, trailer_tvb(offset, 2))
offset = offset + 2
- ndpi_subtree:add(ndpi_fds.name, trailer_tvb(offset, 2))
+ ndpi_subtree:add(ndpi_fds.application_protocol, trailer_tvb(offset, 2))
application_protocol = trailer_tvb(offset, 2):int()
offset = offset + 2