aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/app_queue.c7
-rw-r--r--channels/chan_dahdi.c3
2 files changed, 8 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);
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 0b21723b0..67f7307bb 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -11897,6 +11897,7 @@ static char *handle_pri_show_debug(struct ast_cli_entry *e, int cmd, struct ast_
switch (cmd) {
case CLI_INIT:
e->command = "pri show debug";
+ e->usage = "Show the debug state of pri spans\n";
return NULL;
case CLI_GENERATE:
return NULL;
@@ -11930,6 +11931,7 @@ static char *handle_pri_version(struct ast_cli_entry *e, int cmd, struct ast_cli
switch (cmd) {
case CLI_INIT:
e->command = "pri show version";
+ e->usage = "Show libpri version information\n";
return NULL;
case CLI_GENERATE:
return NULL;
@@ -13470,6 +13472,7 @@ static char *handle_ss7_version(struct ast_cli_entry *e, int cmd, struct ast_cli
switch (cmd) {
case CLI_INIT:
e->command = "ss7 show version";
+ e->usage = "Show the libss7 version\n";
return NULL;
case CLI_GENERATE:
return NULL;