summaryrefslogtreecommitdiff
path: root/cli.c
diff options
context:
space:
mode:
authorAnthony Minessale II <anthmct@yahoo.com>2004-05-10 18:45:20 +0000
committerAnthony Minessale II <anthmct@yahoo.com>2004-05-10 18:45:20 +0000
commit960c01e4c62e0dc0f766636dc6f058132c14bd47 (patch)
treefb51bf0dd852745e6686477df02b8c6daf3ee8ee /cli.c
parent87e3b8b2ad2d6d57cabaaedf613f4c1305da05c4 (diff)
Patch Submitted by BKW on 5/10/2004 to chan_sip.c
Fixing 'show help' inefficency. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2944 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'cli.c')
-rwxr-xr-xcli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli.c b/cli.c
index af9aa45b8..a48ce4b7e 100755
--- a/cli.c
+++ b/cli.c
@@ -770,7 +770,7 @@ static int help_workhorse(int fd, char *match[])
continue;
}
}
- ast_cli(fd, "%20.20s %s\n", fullcmd, e->summary);
+ ast_cli(fd, "%25.25s %s\n", fullcmd, e->summary);
}
return 0;
}