https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2969
Summary: Incorrect field names in MQ dissector
Product: Wireshark
Version: 1.0.3
Platform: All
OS/Version: All
Status: NEW
Severity: Trivial
Priority: Low
Component: Wireshark
AssignedTo: wireshark-bugs@xxxxxxxxxxxxx
ReportedBy: geek.cracovian@xxxxxxxxx
Build Information:
Paste the COMPLETE build information from "Help->About Wireshark", "wireshark
-v", or "tshark -v".
--
At least two fields have incorrect identifiers.
Suggested change to file /trunk/epan/dissectors/packet-mq.c follows.
Current source:
{ &hf_mq_md_replytoq,
{ "ReplyToQ", "mq.md.correlid", FT_STRINGZ, BASE_DEC, NULL, 0x0, "MD
ReplyTo queue manager", HFILL }},
{ &hf_mq_md_replytoqmgr,
{ "ReplyToQMgr", "mq.md.correlid", FT_STRINGZ, BASE_DEC, NULL, 0x0, "MD
ReplyTo queue", HFILL }},
Suggested change:
{ &hf_mq_md_replytoq,
{ "ReplyToQ", "mq.md.replytoq", FT_STRINGZ, BASE_DEC, NULL, 0x0, "MD
ReplyTo queue manager", HFILL }},
{ &hf_mq_md_replytoqmgr,
{ "ReplyToQMgr", "mq.md.replytoqmgr", FT_STRINGZ, BASE_DEC, NULL, 0x0,
"MD ReplyTo queue", HFILL }},
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.