aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-asf.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2006-02-10 04:45:32 +0000
committerTim Potter <tpot@samba.org>2006-02-10 04:45:32 +0000
commit5b3f1c2030d115e6492d8c25c789e651adb48052 (patch)
treea2a305413783943c70d4197221373fafa5b36c25 /epan/dissectors/packet-asf.c
parent2025f091c6362de7d698e6cafbd32fb2934ac8f5 (diff)
ASF messages are in big-endian byte order, not little. From Alert
Standard Format Specification, v2.0, p.51. svn path=/trunk/; revision=17242
Diffstat (limited to 'epan/dissectors/packet-asf.c')
-rw-r--r--epan/dissectors/packet-asf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-asf.c b/epan/dissectors/packet-asf.c
index db0b534d18..95ae78616c 100644
--- a/epan/dissectors/packet-asf.c
+++ b/epan/dissectors/packet-asf.c
@@ -88,12 +88,12 @@ dissect_asf(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
val_to_str(type, asf_type_vals, "Unknown (0x%02x)"));
if (tree) {
- ti = proto_tree_add_item(tree, proto_asf, tvb, 0, 8, TRUE);
+ ti = proto_tree_add_item(tree, proto_asf, tvb, 0, 8, FALSE);
asf_tree = proto_item_add_subtree(ti, ett_asf);
- proto_tree_add_item(asf_tree, hf_asf_iana, tvb, 0, 4, TRUE);
- proto_tree_add_item(asf_tree, hf_asf_type, tvb, 4, 1, TRUE);
- proto_tree_add_item(asf_tree, hf_asf_tag, tvb, 5, 1, TRUE);
- proto_tree_add_item(asf_tree, hf_asf_len, tvb, 7, 1, TRUE);
+ proto_tree_add_item(asf_tree, hf_asf_iana, tvb, 0, 4, FALSE);
+ proto_tree_add_item(asf_tree, hf_asf_type, tvb, 4, 1, FALSE);
+ proto_tree_add_item(asf_tree, hf_asf_tag, tvb, 5, 1, FALSE);
+ proto_tree_add_item(asf_tree, hf_asf_len, tvb, 7, 1, FALSE);
}
if (len) {