Index: cli.c =================================================================== RCS file: /usr/cvsroot/asterisk/cli.c,v retrieving revision 1.95 diff -u -r1.95 cli.c --- cli.c 14 Aug 2005 01:48:14 -0000 1.95 +++ cli.c 20 Aug 2005 00:45:03 -0000 @@ -235,7 +235,7 @@ static int modlist_modentry(const char *module, const char *description, int usecnt, const char *like) { /* Comparing the like with the module */ - if (strstr(module, like) != NULL) { + if (strcasestr(module, like) ) { ast_cli(climodentryfd, MODLIST_FORMAT, module, description, usecnt); return 1; }