aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-08 17:10:58 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-08 17:10:58 +0000
commit349ba3ca9bbcee6695fd82b9f8a864507e6f1fd0 (patch)
treeb4b6058289328c2a7b350356f6b2eccf4c1da793 /pbx.c
parent9eeaaa3915a7353b014283599670d3c4ccb05189 (diff)
Fix formatting of functions (bug #4196, with mods)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5605 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index b5571aca1..3bbbe9081 100755
--- a/pbx.c
+++ b/pbx.c
@@ -1103,7 +1103,7 @@ static int handle_show_functions(int fd, int argc, char *argv[])
ast_cli(fd, "Installed Custom Functions:\n--------------------------------------------------------------------------------\n");
for (acf = acf_root ; acf; acf = acf->next) {
- ast_cli(fd, "%s\t(%s)\t[%s]\n", acf->name, acf->synopsis, acf->syntax);
+ ast_cli(fd, "%-20.20s %-35.35s %s\n", acf->name, acf->syntax, acf->synopsis);
}
ast_cli(fd, "\n");
return 0;