diff --git a/utils/wireshark/enet.lua b/utils/wireshark/enet.lua index 4e2b30b7..99d6054c 100644 --- a/utils/wireshark/enet.lua +++ b/utils/wireshark/enet.lua @@ -489,7 +489,7 @@ function parse_unreliable(tvbuf, tree, pktinfo) unreliable:add(pf_unreliable_seqnum, tvbuf:range(0, 2)) unreliable:add(pf_payload_length, tvbuf:range(2, 2)) - decode_payload(tvbuf:range(4), reliable, pktinfo) + decode_payload(tvbuf:range(4), unreliable, pktinfo) end function parse_fragment(tvbuf, tree, pktinfo) @@ -645,4 +645,4 @@ function heur_dissect_enet(tvbuf, pktinfo, root) end -- register the heuristic for udp only: -enet_proto:register_heuristic("udp", heur_dissect_enet) \ No newline at end of file +enet_proto:register_heuristic("udp", heur_dissect_enet)