From: Matthew Nicholson Date: Tue, 29 Sep 2009 19:49:02 +0000 (+0000) Subject: Fix options 'm' and 's'. They were swapped in the code. Also document the fact that... X-Git-Tag: 11.0.0-beta1~4115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b4432b67ee849c73f8fd9474864913d8a62c555;p=thirdparty%2Fasterisk.git Fix options 'm' and 's'. They were swapped in the code. Also document the fact that app_confbridge does not automatically answer the channel. (closes issue #15964) Reported by: shrift git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@220904 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c index 446cc097f1..2389e9be80 100644 --- a/apps/app_confbridge.c +++ b/apps/app_confbridge.c @@ -97,6 +97,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Enters the user into a specified conference bridge. The user can exit the conference by hangup only. The join sound can be set using the CONFBRIDGE_JOIN_SOUND variable and the leave sound can be set using the CONFBRIDGE_LEAVE_SOUND variable. These can be unique to the caller. + This application will not automatically answer the channel. ***/ @@ -135,10 +136,10 @@ AST_APP_OPTIONS(app_opts,{ AST_APP_OPTION('A', OPTION_MARKEDUSER), AST_APP_OPTION('a', OPTION_ADMIN), AST_APP_OPTION('c', OPTION_ANNOUNCEUSERCOUNT), - AST_APP_OPTION('m', OPTION_MENU), + AST_APP_OPTION('m', OPTION_STARTMUTED), AST_APP_OPTION_ARG('M', OPTION_MUSICONHOLD, OPTION_MUSICONHOLD_CLASS), AST_APP_OPTION('1', OPTION_NOONLYPERSON), - AST_APP_OPTION('s', OPTION_STARTMUTED), + AST_APP_OPTION('s', OPTION_MENU), AST_APP_OPTION('w', OPTION_WAITMARKED), AST_APP_OPTION('q', OPTION_QUIET), });