aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ismp.c
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2021-07-29 02:21:35 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-07-29 17:23:05 +0000
commit7b845e719444a8f7bc92759c98ca2a07d8af13df (patch)
treeb9bfc05c044c769e3700028ccdb580116568a8ca /epan/dissectors/packet-ismp.c
parent177e5cda1fe04d52b3050da1d87231438e9c8264 (diff)
wsutil: rename bytestring_to_str() -> bytes_to_str_punct()
Diffstat (limited to 'epan/dissectors/packet-ismp.c')
-rw-r--r--epan/dissectors/packet-ismp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ismp.c b/epan/dissectors/packet-ismp.c
index c5253873cc..258eb7b8ee 100644
--- a/epan/dissectors/packet-ismp.c
+++ b/epan/dissectors/packet-ismp.c
@@ -220,7 +220,7 @@ ipx_addr_to_str(const guint32 net, const guint8 *ad)
else {
buf = wmem_strdup_printf(wmem_packet_scope(), "%s.%s",
get_ipxnet_name(wmem_packet_scope(), net),
- bytestring_to_str(wmem_packet_scope(), ad, 6, '\0'));
+ bytes_to_str_punct(wmem_packet_scope(), ad, 6, '\0'));
}
return buf;
}