summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2016-02-23 14:57:42 -0600
committerRichard Mudgett <rmudgett@digium.com>2016-02-23 16:40:32 -0600
commit886ee094711c8b81f50ec01e8dab882d54dcd633 (patch)
tree5af73c42c677217c97c54a874216c7a0fd30f769 /channels/chan_sip.c
parentdef3fb46346f4d3b02a21903a748eaeaa2b44de6 (diff)
chan_sip.c: Suppress T.38 SDP c= line if addr is the same.
Use the correct comparison function since we only care if the address without the port is the same. Change-Id: Ibf6c485f843a1be6dee58a47b33d81a7a8cbe3b0
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index aaf0b6d51..e1c391efc 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -13447,7 +13447,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int
ast_str_append(&m_modem, 0, "m=image %d udptl t38\r\n", ast_sockaddr_port(&udptldest));
- if (ast_sockaddr_cmp(&udptldest, &dest)) {
+ if (ast_sockaddr_cmp_addr(&udptldest, &dest)) {
ast_str_append(&m_modem, 0, "c=IN %s %s\r\n",
(ast_sockaddr_is_ipv6(&udptldest) && !ast_sockaddr_is_ipv4_mapped(&udptldest)) ?
"IP6" : "IP4", ast_sockaddr_stringify_addr_remote(&udptldest));