summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-cdt.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-07-19 18:48:31 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-07-19 18:48:31 +0000
commitba2aae0f8ed9a5dca35fac352ce5f0b46ba123c5 (patch)
tree424ec0f6f0630e42bdbc2b63091d6804f131da65 /epan/dissectors/packet-cdt.c
parent1f497af628d7bac84bd94fff6a4332f477017336 (diff)
downloadwireshark-ba2aae0f8ed9a5dca35fac352ce5f0b46ba123c5.tar.gz
Use ENC_NA as encoding for FT_PROTOCOL, FT_NONE and FT_BYTES.
svn path=/trunk/; revision=38122
Diffstat (limited to 'epan/dissectors/packet-cdt.c')
-rw-r--r--epan/dissectors/packet-cdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-cdt.c b/epan/dissectors/packet-cdt.c
index 3952b6eb36..0741d4d88e 100644
--- a/epan/dissectors/packet-cdt.c
+++ b/epan/dissectors/packet-cdt.c
@@ -355,7 +355,7 @@ void dissect_cdt (tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
top_tree = parent_tree;
if (parent_tree) {
- cdt_item = proto_tree_add_item (parent_tree, proto_cdt, tvb, 0, -1, ENC_BIG_ENDIAN);
+ cdt_item = proto_tree_add_item (parent_tree, proto_cdt, tvb, 0, -1, ENC_NA);
tree = proto_item_add_subtree (cdt_item, ett_cdt_CompressedData);
}