aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-07-19 02:47:12 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-07-19 02:47:12 +0000
commitb968cc5c0bb1c9d9f0b560299eca62f4471e764b (patch)
tree2855940b86e22a59f9e40752154776347f60ba09
parent2e2dc7179fe0db6aad20ab967faa5d7cc5a38749 (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 svn path=/trunk/; revision=38105
-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);