summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsip/sip_msg.c
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip/src/pjsip/sip_msg.c')
-rw-r--r--pjsip/src/pjsip/sip_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjsip/src/pjsip/sip_msg.c b/pjsip/src/pjsip/sip_msg.c
index b5d2eb5f..a13f80e1 100644
--- a/pjsip/src/pjsip/sip_msg.c
+++ b/pjsip/src/pjsip/sip_msg.c
@@ -2013,7 +2013,7 @@ static int pjsip_via_hdr_print( pjsip_via_hdr *hdr,
*buf++ = ' ';
/* Check if host contains IPv6 */
- if (pj_memchr(hdr->sent_by.host.ptr, ':', hdr->sent_by.host.slen)) {
+ if (pj_strchr(&hdr->sent_by.host, ':')) {
copy_advance_pair_quote_cond(buf, "", 0, hdr->sent_by.host, '[', ']');
} else {
copy_advance_check(buf, hdr->sent_by.host);