aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/asn1/h248
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/h248
parent177e5cda1fe04d52b3050da1d87231438e9c8264 (diff)
wsutil: rename bytestring_to_str() -> bytes_to_str_punct()
Diffstat (limited to 'epan/dissectors/asn1/h248')
-rw-r--r--epan/dissectors/asn1/h248/h248.cnf4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/asn1/h248/h248.cnf b/epan/dissectors/asn1/h248/h248.cnf
index 6f457c2875..7cb58c325b 100644
--- a/epan/dissectors/asn1/h248/h248.cnf
+++ b/epan/dissectors/asn1/h248/h248.cnf
@@ -362,10 +362,10 @@ SigParameterV1/value ABBREV=sig_param_value
curr_info.term->buffer = (guint8 *)tvb_memdup(actx->pinfo->pool,new_tvb,0,curr_info.term->len);
if(term_info.str){
curr_info.term->str = wmem_strdup_printf(actx->pinfo->pool, "%s %s",
- bytestring_to_str(actx->pinfo->pool,curr_info.term->buffer,curr_info.term->len, 0),
+ bytes_to_str_punct(actx->pinfo->pool,curr_info.term->buffer,curr_info.term->len, 0),
term_info.str);
}else{
- curr_info.term->str = bytestring_to_str(actx->pinfo->pool,curr_info.term->buffer,curr_info.term->len, 0);
+ curr_info.term->str = bytes_to_str_punct(actx->pinfo->pool,curr_info.term->buffer,curr_info.term->len, 0);
}
}