From: Kinsey Moore Date: Wed, 22 Jan 2014 19:34:15 +0000 (+0000) Subject: ConfBridge: Fix channel parameter documentation X-Git-Tag: 12.1.0-rc1~3^2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8315073c11d8bb5a0ee3d444dc291a012a4f1464;p=thirdparty%2Fasterisk.git ConfBridge: Fix channel parameter documentation Confbridge AMI and CLI commands for mute, unmute, and setting the single video source can accept channel prefixes in lieu of a full channel name, but documentation states only that it is required and is a channel name. This corrects the documentation. (closes issue PQ-1397) Reported by: Steve Pitts ........ Merged revisions 406217 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@406223 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c index 11d87c7d0e..20ceb38f80 100644 --- a/apps/app_confbridge.c +++ b/apps/app_confbridge.c @@ -194,7 +194,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") - + + If this parameter is not a complete channel name, the first channel with this prefix will be used. + @@ -206,7 +208,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") - + + If this parameter is not a complete channel name, the first channel with this prefix will be used. + @@ -276,7 +280,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") - + + If this parameter is not a complete channel name, the first channel with this prefix will be used. + @@ -2445,7 +2451,10 @@ static char *handle_cli_confbridge_mute(struct ast_cli_entry *e, int cmd, struct e->command = "confbridge mute"; e->usage = "Usage: confbridge mute \n" - " Mute a channel in a conference.\n"; + " Mute a channel in a conference.\n" + " If the specified channel is a prefix,\n" + " the action will be taken on the first\n" + " matching channel.\n"; return NULL; case CLI_GENERATE: if (a->pos == 2) { @@ -2472,7 +2481,10 @@ static char *handle_cli_confbridge_unmute(struct ast_cli_entry *e, int cmd, stru e->command = "confbridge unmute"; e->usage = "Usage: confbridge unmute \n" - " Unmute a channel in a conference.\n"; + " Unmute a channel in a conference.\n" + " If the specified channel is a prefix,\n" + " the action will be taken on the first\n" + " matching channel.\n"; return NULL; case CLI_GENERATE: if (a->pos == 2) {