[svn-commits] mjordan: branch 13 r424647 - in /branches/13: ./ main/sdp_srtp.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Oct 6 07:38:39 CDT 2014


Author: mjordan
Date: Mon Oct  6 07:38:37 2014
New Revision: 424647

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=424647
Log:
sdp_srtp: Add new lines to some WARNING messages
........

Merged revisions 424646 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    branches/13/   (props changed)
    branches/13/main/sdp_srtp.c

Propchange: branches/13/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: branches/13/main/sdp_srtp.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/main/sdp_srtp.c?view=diff&rev=424647&r1=424646&r2=424647
==============================================================================
--- branches/13/main/sdp_srtp.c (original)
+++ branches/13/main/sdp_srtp.c Mon Oct  6 07:38:37 2014
@@ -232,12 +232,12 @@
 	session_params = strsep(&str, " ");
 
 	if (!tag || !suite) {
-		ast_log(LOG_WARNING, "Unrecognized a=%s", attr);
+		ast_log(LOG_WARNING, "Unrecognized crypto attribute a=%s\n", attr);
 		return -1;
 	}
 
 	if (!ast_strlen_zero(session_params)) {
-		ast_log(LOG_WARNING, "Unsupported crypto parameters: %s", session_params);
+		ast_log(LOG_WARNING, "Unsupported crypto parameters: %s\n", session_params);
 		return -1;
 	}
 




More information about the svn-commits mailing list