From: Rusty Newton Date: Thu, 12 Sep 2013 00:04:08 +0000 (+0000) Subject: 'queue add member' help text correction X-Git-Tag: 12.0.0-alpha2~24^2~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2f87704949e5ae66c4828e159f536bfda63ff82;p=thirdparty%2Fasterisk.git 'queue add member' help text correction You are adding dial strings to the queue, not channels. An aribitrary string could be used, but you are typically referencing a channel. Correcting the command help text. (issue ASTERISK-22263) (closes issue ASTERISK-22263) Reported By: Rusty Newton ........ Merged revisions 398884 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 398885 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@398886 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 694527e4f7..cfec634fac 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -9489,8 +9489,8 @@ static char *handle_queue_add_member(struct ast_cli_entry *e, int cmd, struct as case CLI_INIT: e->command = "queue add member"; e->usage = - "Usage: queue add member to [[[penalty ] as ] state_interface ]\n" - " Add a channel to a queue with optionally: a penalty, membername and a state_interface\n"; + "Usage: queue add member to [[[penalty ] as ] state_interface ]\n" + " Add a dial string (Such as a channel,e.g. SIP/6001) to a queue with optionally: a penalty, membername and a state_interface\n"; return NULL; case CLI_GENERATE: return complete_queue_add_member(a->line, a->word, a->pos, a->n);