From f09cc88ce6b03466f59d609be6eb758a83b9d1e0 Mon Sep 17 00:00:00 2001 From: cmaynard Date: Tue, 19 Jul 2011 02:47:12 +0000 Subject: 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 --- epan/dissectors/packet-bacapp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors') 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); -- cgit v1.2.3