aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ripng.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-ripng.c')
-rw-r--r--epan/dissectors/packet-ripng.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ripng.c b/epan/dissectors/packet-ripng.c
index 0ab0f895e3..56d9a68164 100644
--- a/epan/dissectors/packet-ripng.c
+++ b/epan/dissectors/packet-ripng.c
@@ -86,13 +86,13 @@ dissect_ripng(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
offset += 1;
/* Reserved */
- proto_tree_add_item(ripng_tree, hf_ripng_reserved, tvb, offset, 2, FALSE);
+ proto_tree_add_item(ripng_tree, hf_ripng_reserved, tvb, offset, 2, ENC_NA);
offset += 2;
/* Route Table Entry */
while (tvb_reported_length_remaining(tvb, offset) > 0) {
- rte_ti = proto_tree_add_item(ripng_tree, hf_ripng_rte, tvb, offset, 16 + 2 + 1 + 1, FALSE);
+ rte_ti = proto_tree_add_item(ripng_tree, hf_ripng_rte, tvb, offset, 16 + 2 + 1 + 1, ENC_NA);
rte_tree = proto_item_add_subtree(rte_ti, ett_ripng_rte);
/* IPv6 Prefix */