aboutsummaryrefslogtreecommitdiffstats
path: root/cli.c
diff options
context:
space:
mode:
authoranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-10 18:45:20 +0000
committeranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-10 18:45:20 +0000
commit5e175511fbef7ae2cb94384d145b2e6065570bce (patch)
treefb51bf0dd852745e6686477df02b8c6daf3ee8ee /cli.c
parenta34d122a7867b370e3e7777f0e0439de1c77970e (diff)
Patch Submitted by BKW on 5/10/2004 to chan_sip.c
Fixing 'show help' inefficency. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2944 f38db490-d61c-443f-a65b-d21fe96a405b
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;
}