aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_clialiases.c
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-16 19:38:39 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-16 19:38:39 +0000
commitef52c5109f6c8ef139cd061e92657b693eed1152 (patch)
treee9a007a0dc2887107c5e0148bf349f298d3341a0 /res/res_clialiases.c
parent730a6dc0e8c2a66140b22fbc396298229b1f28ef (diff)
Merged revisions 252848 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r252848 | seanbright | 2010-03-16 15:36:24 -0400 (Tue, 16 Mar 2010) | 10 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.2@252850 f38db490-d61c-443f-a65b-d21fe96a405b
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 853735ba3..4390902f9 100644
--- a/res/res_clialiases.c
+++ b/res/res_clialiases.c
@@ -210,7 +210,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);