https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7372
Summary: tcap.otid and tcap.dtid can not be filtered for.
Product: Wireshark
Version: SVN
Platform: x86
OS/Version: All
Status: NEW
Severity: Major
Priority: Low
Component: Wireshark
AssignedTo: bugzilla-admin@xxxxxxxxxxxxx
ReportedBy: zecke@xxxxxxxxxxx
Build Information:
Paste the COMPLETE build information from "Help->About Wireshark", "wireshark
-v", or "tshark -v".
--
tcap.otid and tcap.dtid can never be 'chosen' as filter. For both source and
destination transaction identifier only tcap.tid can be selected.
Something the below is fixing it:
diff --git a/asn1/tcap/tcap.cnf b/asn1/tcap/tcap.cnf
index 675eb26..c795121 100644
--- a/asn1/tcap/tcap.cnf
+++ b/asn1/tcap/tcap.cnf
@@ -130,7 +130,7 @@ proto_tree *subtree;
tid_item = proto_tree_add_text(tree, tvb, offset, -1, "Source Transaction
ID");
subtree = proto_item_add_subtree(tid_item, ett_otid);
-offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_tid,
+offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_otid,
¶meter_tvb);
if (parameter_tvb){
@@ -169,7 +169,7 @@ proto_tree *subtree;
tid_item = proto_tree_add_text(tree, tvb, offset, -1, "Destination Transaction
ID");
subtree = proto_item_add_subtree(tid_item, ett_otid);
-offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_tid,
+offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_dtid,
¶meter_tvb);
if (parameter_tvb){
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.