aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimaxasncp/packet-wimaxasncp.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/wimaxasncp/packet-wimaxasncp.c')
-rw-r--r--plugins/wimaxasncp/packet-wimaxasncp.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/wimaxasncp/packet-wimaxasncp.c b/plugins/wimaxasncp/packet-wimaxasncp.c
index e4570113d1..377a0d17d9 100644
--- a/plugins/wimaxasncp/packet-wimaxasncp.c
+++ b/plugins/wimaxasncp/packet-wimaxasncp.c
@@ -596,7 +596,7 @@ static void wimaxasncp_proto_tree_add_tlv_ipv4_value(
ip = tvb_get_ipv4(tvb, offset);
hostname = get_hostname(ip);
- ip_str = ip_to_str((guint8 *)&ip);
+ ip_str = tvb_ip_to_str(tvb, offset);
proto_tree_add_ipv4_format(
tree, hf_value,
@@ -1563,7 +1563,7 @@ static void wimaxasncp_dissect_tlv_value(
proto_item_append_text(
item, " - %s (%s)",
- get_hostname(ip), ip_to_str((guint8 *)&ip));
+ get_hostname(ip), tvb_ip_to_str(tvb, offset));
offset += 4;
@@ -1574,13 +1574,12 @@ static void wimaxasncp_dissect_tlv_value(
ip = tvb_get_ipv4(tvb, offset);
- s = ip_to_str((guint8 *)&ip);
+ s = tvb_ip_to_str(tvb, offset);
- proto_tree_add_ipv4_format_value(
+ proto_tree_add_item(
ip_address_mask_tree,
tlv_info->hf_ipv4_mask,
- tvb, offset, 4, ip,
- "%s", s);
+ tvb, offset, 4, ENC_BIG_ENDIAN);
proto_item_append_text(
item, " / %s", s);