aboutsummaryrefslogtreecommitdiffstats
path: root/cli.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-08 18:20:49 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-08 18:20:49 +0000
commitc930a4479cb2c64fb6478a71eccd1254c0850bc2 (patch)
tree35f55cb3606cae448a84ff414d3ab41247842e0c /cli.c
parent4c7b19fa13c970f77183e26a3df10bc6046ac9c2 (diff)
Minor config updates, add module counts (bug #2593)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3953 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 c1846ed5b..21b28b4b0 100755
--- a/cli.c
+++ b/cli.c
@@ -337,7 +337,7 @@ static int handle_modlist(int fd, int argc, char *argv[])
ast_mutex_lock(&climodentrylock);
climodentryfd = fd;
ast_cli(fd, MODLIST_FORMAT2, "Module", "Description", "Use Count");
- ast_update_module_list(modlist_modentry);
+ ast_cli(fd,"%d modules loaded\n",ast_update_module_list(modlist_modentry));
climodentryfd = -1;
ast_mutex_unlock(&climodentrylock);
return RESULT_SUCCESS;