summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-radiotap.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-radiotap.c')
-rw-r--r--epan/dissectors/packet-radiotap.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-radiotap.c b/epan/dissectors/packet-radiotap.c
index 6800d20aea..f83fcb725a 100644
--- a/epan/dissectors/packet-radiotap.c
+++ b/epan/dissectors/packet-radiotap.c
@@ -1571,28 +1571,28 @@ dissect_radiotap(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
proto_tree_add_item(flags_tree,
hf_radiotap_flags_cfp,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(flags_tree,
hf_radiotap_flags_preamble,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(flags_tree,
hf_radiotap_flags_wep,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(flags_tree,
hf_radiotap_flags_frag,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(flags_tree,
hf_radiotap_flags_fcs,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(flags_tree,
hf_radiotap_flags_datapad,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(flags_tree,
hf_radiotap_flags_badfcs,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(flags_tree,
hf_radiotap_flags_shortgi,
- tvb, offset, 1, FALSE);
+ tvb, offset, 1, ENC_BIG_ENDIAN);
}
break;
}