aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-stat.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-04 22:44:31 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-04 22:44:31 +0000
commit94f36ca4ff177617fcc4e4ca8a171e374f8aeff6 (patch)
tree060bfcfb238455d21752efec8612998f2ab1db6f /epan/dissectors/packet-stat.c
parent039fc59cb110aa485e910583d1edd5ff81ca2168 (diff)
Use ENC_NA as encoding for proto_tree_add_item() calls which directly reference an hf item (in hf[] with types:
FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
Diffstat (limited to 'epan/dissectors/packet-stat.c')
-rw-r--r--epan/dissectors/packet-stat.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-stat.c b/epan/dissectors/packet-stat.c
index a6efc5a58b..2b248ee518 100644
--- a/epan/dissectors/packet-stat.c
+++ b/epan/dissectors/packet-stat.c
@@ -125,7 +125,7 @@ dissect_stat_stat_res(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_t
if (tree) {
sub_item = proto_tree_add_item(tree, hf_stat_stat_res, tvb,
- offset, -1, FALSE);
+ offset, -1, ENC_NA);
if (sub_item)
sub_tree = proto_item_add_subtree(sub_item, ett_stat_stat_res);
}
@@ -150,7 +150,7 @@ dissect_stat_my_id(tvbuff_t *tvb, int offset, proto_tree *tree)
if (tree) {
sub_item = proto_tree_add_item(tree, hf_stat_my_id, tvb,
- offset, my_id_len(tvb,offset), FALSE);
+ offset, my_id_len(tvb,offset), ENC_NA);
if (sub_item)
sub_tree = proto_item_add_subtree(sub_item, ett_stat_my_id);
}
@@ -171,7 +171,7 @@ dissect_stat_mon_id(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tre
if (tree) {
sub_item = proto_tree_add_item(tree, hf_stat_mon, tvb,
- offset, mon_id_len(tvb,offset), FALSE);
+ offset, mon_id_len(tvb,offset), ENC_NA);
if (sub_item)
sub_tree = proto_item_add_subtree(sub_item, ett_stat_mon);
}
@@ -187,7 +187,7 @@ dissect_stat_mon_id(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tre
static int
dissect_stat_priv(tvbuff_t *tvb, int offset, proto_tree *tree)
{
- proto_tree_add_item(tree, hf_stat_priv, tvb, offset, 16, FALSE);
+ proto_tree_add_item(tree, hf_stat_priv, tvb, offset, 16, ENC_NA);
offset += 16;
return offset;
@@ -220,7 +220,7 @@ dissect_stat_notify(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tre
if (tree) {
sub_item = proto_tree_add_item(tree, hf_stat_stat_chge, tvb,
- offset, -1, FALSE);
+ offset, -1, ENC_NA);
if (sub_item)
sub_tree = proto_item_add_subtree(sub_item, ett_stat_stat_chge);
}