summaryrefslogtreecommitdiff
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2008-12-18 21:21:44 +0000
committerJoshua Colp <jcolp@digium.com>2008-12-18 21:21:44 +0000
commit654ea55a651e4cde4b904a283971b59a021aca88 (patch)
tree623887bc8ac47b404e21942e5cfd11d4baff22fd /apps/app_queue.c
parent221694480c1d9b99a0d24890860b8bbbc7733975 (diff)
Numerous documentation updates.
(closes issue #13970) Reported by: pkempgen Patches: __20081217_cli_usage_fixes.patch.txt uploaded by blitzrage (license 10) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@165792 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_queue.c')
-rw-r--r--apps/app_queue.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 49276ebac..5b6c43932 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -6439,9 +6439,9 @@ static char *handle_queue_pause_member(struct ast_cli_entry *e, int cmd, struct
e->command = "queue {pause|unpause} member";
e->usage =
"Usage: queue {pause|unpause} member <member> [queue <queue> [reason <reason>]]\n"
- " Pause or unpause a queue member. Not specifying a particular queue\n"
- " will pause or unpause a member across all queues to which the member\n"
- " belongs.\n";
+ " Pause or unpause a queue member. Not specifying a particular queue\n"
+ " will pause or unpause a member across all queues to which the member\n"
+ " belongs.\n";
return NULL;
case CLI_GENERATE:
return complete_queue_pause_member(a->line, a-> word, a->pos, a->n);
@@ -6513,8 +6513,8 @@ static char *handle_queue_set_member_penalty(struct ast_cli_entry *e, int cmd, s
e->command = "queue set penalty";
e->usage =
"Usage: queue set penalty <penalty> on <interface> [in <queue>]\n"
- "Set a member's penalty in the queue specified. If no queue is specified\n"
- "then that interface's penalty is set in all queues to which that interface is a member\n";
+ " Set a member's penalty in the queue specified. If no queue is specified\n"
+ " then that interface's penalty is set in all queues to which that interface is a member\n";
return NULL;
case CLI_GENERATE:
return complete_queue_set_member_penalty(a->line, a->word, a->pos, a->n);
@@ -6575,8 +6575,8 @@ static char *handle_queue_rule_show(struct ast_cli_entry *e, int cmd, struct ast
e->command = "queue show rules";
e->usage =
"Usage: queue show rules [rulename]\n"
- "Show the list of rules associated with rulename. If no\n"
- "rulename is specified, list all rules defined in queuerules.conf\n";
+ " Show the list of rules associated with rulename. If no\n"
+ " rulename is specified, list all rules defined in queuerules.conf\n";
return NULL;
case CLI_GENERATE:
return complete_queue_rule_show(a->line, a->word, a->pos, a->n);
@@ -6606,7 +6606,7 @@ static char *handle_queue_rule_reload(struct ast_cli_entry *e, int cmd, struct a
e->command = "queue reload rules";
e->usage =
"Usage: queue reload rules\n"
- "Reloads rules defined in queuerules.conf\n";
+ " Reloads rules defined in queuerules.conf\n";
return NULL;
case CLI_GENERATE:
return NULL;