aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btmesh.c
diff options
context:
space:
mode:
authormistral13 <mistral@gmx.ch>2023-10-11 22:17:50 +0200
committerAndersBroman <a.broman58@gmail.com>2023-10-12 20:19:11 +0000
commitd3fab19401caf09e2e65047d2843db9d3caf2131 (patch)
tree5e949de5535097ee65e6e54683ef4f91797dbea7 /epan/dissectors/packet-btmesh.c
parent1a25bcb0c09144876073562d52bacf94fe951604 (diff)
btmesh: the pinfo column of the own (lua-)dissector was overwritten by the packet-btmesh.c dissector
for 2. item wireshark/wireshark#19388
Diffstat (limited to 'epan/dissectors/packet-btmesh.c')
-rw-r--r--epan/dissectors/packet-btmesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-btmesh.c b/epan/dissectors/packet-btmesh.c
index a30ac0084e..11db89f4df 100644
--- a/epan/dissectors/packet-btmesh.c
+++ b/epan/dissectors/packet-btmesh.c
@@ -4797,8 +4797,8 @@ dissect_btmesh_model_layer(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
vendor = tvb_get_guint16(tvb, offset + 1, ENC_BIG_ENDIAN);
proto_tree_add_item(sub_tree, hf_btmesh_model_layer_vendor, tvb, offset + 1, 2, ENC_LITTLE_ENDIAN);
payload_tvb = tvb_new_subset_remaining(tvb, offset);
- dissector_try_uint_new(btmesh_model_vendor_dissector_table, vendor, payload_tvb, pinfo, tree, TRUE, GUINT_TO_POINTER(vendor));
col_set_str(pinfo->cinfo, COL_INFO, "Access Message - Vendor Opcode");
+ dissector_try_uint_new(btmesh_model_vendor_dissector_table, vendor, payload_tvb, pinfo, tree, TRUE, GUINT_TO_POINTER(vendor));
offset+=3;
} else {
/* Two octet opcode */