[svn-commits] rmudgett: branch 1.8 r376864 - /branches/1.8/channels/chan_sip.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Nov 29 16:29:07 CST 2012
Author: rmudgett
Date: Thu Nov 29 16:29:03 2012
New Revision: 376864
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=376864
Log:
Fix compile error.
(issue ASTERISK-20724)
Modified:
branches/1.8/channels/chan_sip.c
Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=376864&r1=376863&r2=376864
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Thu Nov 29 16:29:03 2012
@@ -16377,7 +16377,7 @@
if (ast_sockaddr_resolve_first(&tmp, c, 0)) {
ast_log(LOG_WARNING, "Could not resolve socket address for '%s'\n", c);
port = STANDARD_SIP_PORT;
- } else if (!(port = ast_sockaddr_port(&tmp)) {
+ } else if (!(port = ast_sockaddr_port(&tmp))) {
port = STANDARD_SIP_PORT;
}
More information about the svn-commits
mailing list