[asterisk-commits] pabelanger: branch 10 r345882 - /branches/10/apps/confbridge/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Nov 22 10:41:01 CST 2011
Author: pabelanger
Date: Tue Nov 22 10:40:57 2011
New Revision: 345882
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=345882
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
Modified:
branches/10/apps/confbridge/conf_config_parser.c
Modified: branches/10/apps/confbridge/conf_config_parser.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/apps/confbridge/conf_config_parser.c?view=diff&rev=345882&r1=345881&r2=345882
==============================================================================
--- branches/10/apps/confbridge/conf_config_parser.c (original)
+++ branches/10/apps/confbridge/conf_config_parser.c Tue Nov 22 10:40:57 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 asterisk-commits
mailing list