aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authormvanbaak <mvanbaak@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-27 01:08:11 +0000
committermvanbaak <mvanbaak@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-27 01:08:11 +0000
commit3b0484f45b3b63714e8800d4ae48ac0f3b7baf4e (patch)
treec7db0d455d6a762c0387e533c605e1e70e5d4d47 /apps/app_queue.c
parentc69e951d510af6042c0020fe72a0ae103d4c2492 (diff)
Merged revisions 144879 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r144879 | mvanbaak | 2008-09-27 02:49:24 +0200 (Sat, 27 Sep 2008) | 2 lines fix a couple of CLI commands that did not have a help description. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@144881 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_queue.c')
-rw-r--r--apps/app_queue.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 59f28abd3..25bb9b8ec 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -6059,7 +6059,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 <channel> to <queue> [[[penalty <penalty>] as <membername>] state_interface <interface>]\n";
+ "Usage: queue add member <channel> to <queue> [[[penalty <penalty>] as <membername>] state_interface <interface>]\n"
+ " Add a channel 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);
@@ -6171,7 +6172,9 @@ static char *handle_queue_remove_member(struct ast_cli_entry *e, int cmd, struct
switch (cmd) {
case CLI_INIT:
e->command = "queue remove member";
- e->usage = "Usage: queue remove member <channel> from <queue>\n";
+ e->usage =
+ "Usage: queue remove member <channel> from <queue>\n"
+ " Remove a specific channel from a queue.\n";
return NULL;
case CLI_GENERATE:
return complete_queue_remove_member(a->line, a->word, a->pos, a->n);