mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
Fix CLI formatting typo (bug #4945)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6324 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
cli.c
2
cli.c
@@ -1108,7 +1108,7 @@ static int handle_help(int fd, int argc, char *argv[]) {
|
|||||||
e = find_cli(argv + 1, 1);
|
e = find_cli(argv + 1, 1);
|
||||||
if (e) {
|
if (e) {
|
||||||
if (e->usage)
|
if (e->usage)
|
||||||
ast_cli(fd, e->usage);
|
ast_cli(fd, "%s", e->usage);
|
||||||
else {
|
else {
|
||||||
join(fullcmd, sizeof(fullcmd), argv+1);
|
join(fullcmd, sizeof(fullcmd), argv+1);
|
||||||
ast_cli(fd, "No help text available for '%s'.\n", fullcmd);
|
ast_cli(fd, "No help text available for '%s'.\n", fullcmd);
|
||||||
|
Reference in New Issue
Block a user