Index: pbx.c =================================================================== RCS file: /usr/cvsroot/asterisk/pbx.c,v retrieving revision 1.239 diff -u -r1.239 pbx.c --- pbx.c 5 May 2005 15:07:48 -0000 1.239 +++ pbx.c 6 May 2005 17:34:46 -0000 @@ -1103,7 +1103,7 @@ 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; @@ -1202,7 +1202,7 @@ } for (acfptr = acf_root; acfptr; acfptr = acfptr->next) { - if (!strcmp(name, acfptr->name)) { + if (!strcasecmp(name, acfptr->name)) { break; } }