Fix the display of unicode characters in wireshark (#845)
Some checks failed
Debug build / build (push) Has been cancelled
Validate Gradle Wrapper / Validation (push) Has been cancelled
Test native code / test (push) Has been cancelled
Windows build / build (push) Has been cancelled

Closes #844
This commit is contained in:
xiyue 2026-03-20 02:53:26 +08:00 committed by GitHub
parent 6f3716b2c9
commit 7a24bf158a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,7 @@ local function dissect_pcap_trailer(buffer, pinfo, tree)
subtree:add(fields.magic, trailer(0, 4))
subtree:add(fields.uid, trailer(4, 4))
subtree:add(fields.appname, trailer(8, 20))
subtree:add(fields.appname, appname)
return true
end