[asterisk-commits] file: branch 1.6.0 r110611 - in /branches/1.6.0: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Mar 24 10:29:38 CDT 2008
Author: file
Date: Mon Mar 24 10:29:38 2008
New Revision: 110611
URL: http://svn.digium.com/view/asterisk?view=rev&rev=110611
Log:
Merged revisions 110610 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r110610 | file | 2008-03-24 12:28:25 -0300 (Mon, 24 Mar 2008) | 6 lines
Only print out the set_address_from_contact host verbose message if debugging is enabled on the dialog.
(closes issue #12280)
Reported by: rjain
Patches:
chan_sip.c.diff uploaded by rjain (license 226)
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/channels/chan_sip.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=110611&r1=110610&r2=110611
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Mon Mar 24 10:29:38 2008
@@ -9688,7 +9688,9 @@
port = !ast_strlen_zero(pt) ? atoi(pt) : STANDARD_SIP_PORT;
}
- ast_verbose("--- set_address_from_contact host '%s'\n", host);
+ if (sip_debug_test_pvt(pvt)) {
+ ast_verbose("--- set_address_from_contact host '%s'\n", host);
+ }
/* XXX This could block for a long time XXX */
/* We should only do this if it's a name, not an IP */
More information about the asterisk-commits
mailing list