summaryrefslogtreecommitdiff
path: root/res/res_clialiases.c
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2010-03-16 19:36:24 +0000
committerSean Bright <sean@malleable.com>2010-03-16 19:36:24 +0000
commit5f3730df4c6f3ddfe5cf04473cb04adfdcd33124 (patch)
treec2645f9cf9f13e3d72ab7448c6f9e5e5a3d9eb18 /res/res_clialiases.c
parent385a40226a899f61ab363c4c267253dd2ae5bb33 (diff)
Include an extra newline after "Aliased CLI command" to get back the prompt.
The other issue mentioned in this bug will be more difficult to resolve since we have no idea (right now) of knowing if the command that is aliased has been installed yet. (issue #16978) Reported by: jw-asterisk Tested by: seanbright git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@252848 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_clialiases.c')
-rw-r--r--res/res_clialiases.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_clialiases.c b/res/res_clialiases.c
index 14d064a1a..e2558f274 100644
--- a/res/res_clialiases.c
+++ b/res/res_clialiases.c
@@ -204,7 +204,7 @@ static void load_config(int reload)
strcpy(alias->real_cmd, v1->value);
alias->cli_entry.handler = cli_alias_passthrough;
alias->cli_entry.command = alias->alias;
- alias->cli_entry.usage = "Aliased CLI Command";
+ alias->cli_entry.usage = "Aliased CLI Command\n";
ast_cli_register(&alias->cli_entry);
ao2_link(cli_aliases, alias);