From: Olle Johansson Date: Tue, 23 May 2006 12:14:35 +0000 (+0000) Subject: Code formatting X-Git-Tag: 1.4.0-beta1~1249 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=883e4d6a9b51ff76b2d8b47aa9029e6dd7db1bd0;p=thirdparty%2Fasterisk.git Code formatting git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29665 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index da151a0d22..eb8a6da07f 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -2304,32 +2304,31 @@ static int create_addr(struct sip_pvt *dialog, const char *opeer) int res = create_addr_from_peer(dialog, p); ASTOBJ_UNREF(p, sip_destroy_peer); return res; - } else { - hostn = peer; - portno = port ? atoi(port) : DEFAULT_SIP_PORT; - if (srvlookup) { - char service[MAXHOSTNAMELEN]; - int tportno; - int ret; - snprintf(service, sizeof(service), "_sip._udp.%s", peer); - ret = ast_get_srv(NULL, host, sizeof(host), &tportno, service); - if (ret > 0) { - hostn = host; - portno = tportno; - } - } - hp = ast_gethostbyname(hostn, &ahp); - if (hp) { - ast_string_field_set(dialog, tohost, peer); - memcpy(&dialog->sa.sin_addr, hp->h_addr, sizeof(dialog->sa.sin_addr)); - dialog->sa.sin_port = htons(portno); - dialog->recv = dialog->sa; - return 0; - } else { - ast_log(LOG_WARNING, "No such host: %s\n", peer); - return -1; + } + hostn = peer; + portno = port ? atoi(port) : DEFAULT_SIP_PORT; + if (srvlookup) { + char service[MAXHOSTNAMELEN]; + int tportno; + int ret; + + snprintf(service, sizeof(service), "_sip._udp.%s", peer); + ret = ast_get_srv(NULL, host, sizeof(host), &tportno, service); + if (ret > 0) { + hostn = host; + portno = tportno; } } + hp = ast_gethostbyname(hostn, &ahp); + if (!hp) { + ast_log(LOG_WARNING, "No such host: %s\n", peer); + return -1; + } + ast_string_field_set(dialog, tohost, peer); + memcpy(&dialog->sa.sin_addr, hp->h_addr, sizeof(dialog->sa.sin_addr)); + dialog->sa.sin_port = htons(portno); + dialog->recv = dialog->sa; + return 0; } /*! \brief Scheduled congestion on a call */