aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bacapp.c
diff options
context:
space:
mode:
authorcmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-19 02:47:12 +0000
committercmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-19 02:47:12 +0000
commitf09cc88ce6b03466f59d609be6eb758a83b9d1e0 (patch)
tree2855940b86e22a59f9e40752154776347f60ba09 /epan/dissectors/packet-bacapp.c
parentb789dc6818e82bb35421f64ff1e74729b37ef482 (diff)
From Michael Mann via bug 5769: In fDevice_Instance(), add field in proper
big-endian byte order. Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5769 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38105 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-bacapp.c')
-rw-r--r--epan/dissectors/packet-bacapp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bacapp.c b/epan/dissectors/packet-bacapp.c
index 543b4b4705..ca20070363 100644
--- a/epan/dissectors/packet-bacapp.c
+++ b/epan/dissectors/packet-bacapp.c
@@ -4555,7 +4555,7 @@ fDevice_Instance (tvbuff_t *tvb, proto_tree *tree, guint offset, int hf)
proto_tree *subtree;
tag_len = fTagHeader (tvb, offset, &tag_no, &tag_info, &lvt);
- ti = proto_tree_add_item(tree, hf, tvb, offset+tag_len, lvt, TRUE);
+ ti = proto_tree_add_item(tree, hf, tvb, offset+tag_len, lvt, ENC_BIG_ENDIAN);
subtree = proto_item_add_subtree(ti, ett_bacapp_tag);
fTagHeaderTree (tvb, subtree, offset, &tag_no, &tag_info, &lvt);