[svn-commits] pabelanger: trunk r345883 - in /trunk: ./ apps/confbridge/conf_config_parser.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 22 10:42:00 CST 2011


Author: pabelanger
Date: Tue Nov 22 10:41:58 2011
New Revision: 345883

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=345883
Log:
Add missing sound_only_one config variable

(closes issue ASTERISK-18895)
Reported by: zvision
Patches:
        conf_config_parser.diff (license #5755) patch uploaded by zvision
........

Merged revisions 345882 from http://svn.asterisk.org/svn/asterisk/branches/10

Modified:
    trunk/   (props changed)
    trunk/apps/confbridge/conf_config_parser.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.

Modified: trunk/apps/confbridge/conf_config_parser.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/confbridge/conf_config_parser.c?view=diff&rev=345883&r1=345882&r2=345883
==============================================================================
--- trunk/apps/confbridge/conf_config_parser.c (original)
+++ trunk/apps/confbridge/conf_config_parser.c Tue Nov 22 10:41:58 2011
@@ -219,6 +219,8 @@
 
 	if (!strcasecmp(sound_name, "sound_only_person")) {
 		ast_string_field_set(sounds, onlyperson, sound_file);
+	} else if (!strcasecmp(sound_name, "sound_only_one")) {
+		ast_string_field_set(sounds, onlyone, sound_file);
 	} else if (!strcasecmp(sound_name, "sound_has_joined")) {
 		ast_string_field_set(sounds, hasjoin, sound_file);
 	} else if (!strcasecmp(sound_name, "sound_has_left")) {




More information about the svn-commits mailing list