From 4fbb4494445fd96e266f7681588e6fd998cb5859 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Mon, 14 May 2007 18:21:30 +0000 Subject: [PATCH] If no port is specified in the outboundproxy setting then use the standard SIP port. (issue #9665 reported by tootai) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@64274 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index e9e38d08f9..dc46c66c65 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -1772,8 +1772,7 @@ static struct sip_proxy *proxy_allocate(char *name, char *port, int force) return NULL; proxy->force = force; ast_copy_string(proxy->name, name, sizeof(proxy->name)); - if (!ast_strlen_zero(port)) - proxy->ip.sin_port = htons(atoi(port)); + proxy->ip.sin_port = htons((!ast_strlen_zero(port) ? atoi(port) : STANDARD_SIP_PORT)); proxy_update(proxy); return proxy; }