[asterisk-commits] mjordan: branch 10 r361333 - in /branches/10: ./	channels/chan_sip.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Fri Apr  6 09:01:37 CDT 2012
    
    
  
Author: mjordan
Date: Fri Apr  6 09:01:33 2012
New Revision: 361333
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=361333
Log:
Fix a typo in the warning messages for an ignored media stream
Added a '\n' to the warning messages when we ignore a media stream due to the
port number being '0'.
(closes issue ASTERISK-19646)
Reported by: Badalian Vyacheslav
........
Merged revisions 361332 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
    branches/10/   (props changed)
    branches/10/channels/chan_sip.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/channels/chan_sip.c?view=diff&rev=361333&r1=361332&r2=361333
==============================================================================
--- branches/10/channels/chan_sip.c (original)
+++ branches/10/channels/chan_sip.c Fri Apr  6 09:01:33 2012
@@ -9103,7 +9103,7 @@
 		if ((sscanf(m, "audio %30u/%30u RTP/%4s %n", &x, &numberofports, protocol, &len) == 3 && len > 0) ||
 		    (sscanf(m, "audio %30u RTP/%4s %n", &x, protocol, &len) == 2 && len > 0)) {
 			if (x == 0) {
-				ast_log(LOG_WARNING, "ignoring 'audio' media offer because port number is zero");
+				ast_log(LOG_WARNING, "ignoring 'audio' media offer because port number is zero\n");
 				continue;
 			}
 			if (!strcmp(protocol, "SAVP")) {
@@ -9139,7 +9139,7 @@
 		} else if ((sscanf(m, "video %30u/%30u RTP/%4s %n", &x, &numberofports, protocol, &len) == 3 && len > 0) ||
 			   (sscanf(m, "video %30u RTP/%4s %n", &x, protocol, &len) == 2 && len > 0)) {
 			if (x == 0) {
-				ast_log(LOG_WARNING, "ignoring 'video' media offer because port number is zero");
+				ast_log(LOG_WARNING, "ignoring 'video' media offer because port number is zero\n");
 				continue;
 			}
 			if (!strcmp(protocol, "SAVP")) {
@@ -9175,7 +9175,7 @@
 		} else if ((sscanf(m, "text %30u/%30u RTP/AVP %n", &x, &numberofports, &len) == 2 && len > 0) ||
 			   (sscanf(m, "text %30u RTP/AVP %n", &x, &len) == 1 && len > 0)) {
 			if (x == 0) {
-				ast_log(LOG_WARNING, "ignoring 'text' media offer because port number is zero");
+				ast_log(LOG_WARNING, "ignoring 'text' media offer because port number is zero\n");
 				continue;
 			}
 			if (p->offered_media[SDP_TEXT].order_offered) {
@@ -9205,7 +9205,7 @@
 		} else if (((sscanf(m, "image %30u udptl t38%n", &x, &len) == 1 && len > 0) ||
 			    (sscanf(m, "image %30u UDPTL t38%n", &x, &len) == 1 && len > 0))) {
 			if (x == 0) {
-				ast_log(LOG_WARNING, "ignoring 'image' media offer because port number is zero");
+				ast_log(LOG_WARNING, "ignoring 'image' media offer because port number is zero\n");
 				continue;
 			}
 			if (initialize_udptl(p)) {
    
    
More information about the asterisk-commits
mailing list