[asterisk-commits] rmudgett: trunk r431055 -	/trunk/apps/confbridge/conf_chan_record.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Fri Jan 23 14:17:21 CST 2015
    
    
  
Author: rmudgett
Date: Fri Jan 23 14:17:20 2015
New Revision: 431055
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=431055
Log:
app_confbridge: Shorten CBRec channel names to CBRec/<conf_name>-<seq-num>
Modified:
    trunk/apps/confbridge/conf_chan_record.c
Modified: trunk/apps/confbridge/conf_chan_record.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/confbridge/conf_chan_record.c?view=diff&rev=431055&r1=431054&r2=431055
==============================================================================
--- trunk/apps/confbridge/conf_chan_record.c (original)
+++ trunk/apps/confbridge/conf_chan_record.c Fri Jan 23 14:17:20 2015
@@ -70,7 +70,7 @@
 	ast_format_cap_append_by_type(capabilities, AST_MEDIA_TYPE_UNKNOWN);
 
 	chan = ast_channel_alloc(1, AST_STATE_UP, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0,
-		"CBRec/conf-%s-uid-%08x",
+		"CBRec/%s-%08x",
 		conf_name, (unsigned) generated_seqno);
 	if (!chan) {
 		return NULL;
    
    
More information about the asterisk-commits
mailing list