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
This commit is contained in:
Anthony Minessale II
2004-05-10 18:45:20 +00:00
parent 87e3b8b2ad
commit 960c01e4c6
2 changed files with 2 additions and 2 deletions

2
cli.c
View File

@@ -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;
}