diff --git a/channels/chan_sip.c b/channels/chan_sip.c index d273e0913d..ff0d18d2a7 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -18635,7 +18635,7 @@ static int build_reply_digest(struct sip_pvt *p, int method, char* digest, int d struct sip_auth_container *credentials; if (!ast_strlen_zero(p->domain)) - ast_copy_string(uri, p->domain, sizeof(uri)); + snprintf(uri, sizeof(uri), "%s:%s", p->socket.type == SIP_TRANSPORT_TLS ? "sips" : "sip", p->domain); else if (!ast_strlen_zero(p->uri)) ast_copy_string(uri, p->uri, sizeof(uri)); else