aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/asn1/snmp
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/asn1/snmp
parent177e5cda1fe04d52b3050da1d87231438e9c8264 (diff)
wsutil: rename bytestring_to_str() -> bytes_to_str_punct()
Diffstat (limited to 'epan/dissectors/asn1/snmp')
-rw-r--r--epan/dissectors/asn1/snmp/snmp.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/asn1/snmp/snmp.cnf b/epan/dissectors/asn1/snmp/snmp.cnf
index a090c2a3b4..fe7947a32e 100644
--- a/epan/dissectors/asn1/snmp/snmp.cnf
+++ b/epan/dissectors/asn1/snmp/snmp.cnf
@@ -221,7 +221,7 @@ BulkPDU/request-id bulkPDU_request-id
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;
}