[svn-commits] coreyfarrell: branch 11 r415915 - in /branches/11: ./ channels/sip/sdp_crypto.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Jun 12 12:20:08 CDT 2014
Author: coreyfarrell
Date: Thu Jun 12 12:20:05 2014
New Revision: 415915
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=415915
Log:
chan_sip: DEBUG messages in sdp_crypto.c display despite a DEBUG level of zero
Change debug level for messages in sdp_crypto.c from zero to one. This
ensures the messages are not displayed when debugging is disabled. Change
does not apply to 12+ as it was already fixed in those versions.
ASTERISK-23246 #close
Reported by: Rusty Newton
Review: https://reviewboard.asterisk.org/r/3605/
........
Merged revisions 415908 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/11/ (props changed)
branches/11/channels/sip/sdp_crypto.c
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/11/channels/sip/sdp_crypto.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/sip/sdp_crypto.c?view=diff&rev=415915&r1=415914&r2=415915
==============================================================================
--- branches/11/channels/sip/sdp_crypto.c (original)
+++ branches/11/channels/sip/sdp_crypto.c Thu Jun 12 12:20:05 2014
@@ -282,7 +282,7 @@
}
if (!p->tag) {
- ast_log(LOG_DEBUG, "Accepting crypto tag %s\n", tag);
+ ast_debug(1, "Accepting crypto tag %s\n", tag);
p->tag = ast_strdup(tag);
if (!p->tag) {
ast_log(LOG_ERROR, "Could not allocate memory for tag\n");
@@ -307,7 +307,7 @@
return -1;
}
- ast_log(LOG_DEBUG, "Crypto line: %s", p->a_crypto);
+ ast_debug(1, "Crypto line: %s", p->a_crypto);
return 0;
}
More information about the svn-commits
mailing list