aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-snmp.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-snmp.c
parent177e5cda1fe04d52b3050da1d87231438e9c8264 (diff)
wsutil: rename bytestring_to_str() -> bytes_to_str_punct()
Diffstat (limited to 'epan/dissectors/packet-snmp.c')
-rw-r--r--epan/dissectors/packet-snmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-snmp.c b/epan/dissectors/packet-snmp.c
index e090a4f6c3..1b847bbb09 100644
--- a/epan/dissectors/packet-snmp.c
+++ b/epan/dissectors/packet-snmp.c
@@ -2869,7 +2869,7 @@ dissect_snmp_SNMPv3Message(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int off
if (usm_p.authOK) {
expert = &ei_snmp_authentication_ok;
} else {
- const gchar* calc_auth_str = bytestring_to_str(actx->pinfo->pool, calc_auth,calc_auth_len,' ');
+ const gchar* calc_auth_str = bytes_to_str_punct(actx->pinfo->pool, calc_auth,calc_auth_len,' ');
proto_item_append_text(authen_item, " calculated = %s", calc_auth_str);
expert = &ei_snmp_authentication_error;
}