From ca209244e27cf46c2eaeb137f8bf79308f4ffab7 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Mon, 22 Aug 2005 18:45:41 +0000 Subject: add count of files used to build Asterisk/modules (issue #4992 with text mod) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6350 f38db490-d61c-443f-a65b-d21fe96a405b --- asterisk.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'asterisk.c') diff --git a/asterisk.c b/asterisk.c index ca3aec3a9..fd28291ec 100755 --- a/asterisk.c +++ b/asterisk.c @@ -218,6 +218,7 @@ static int handle_show_version_files(int fd, int argc, char *argv[]) regex_t regexbuf; int havepattern = 0; int havename = 0; + int count_files = 0; switch (argc) { case 5: @@ -248,11 +249,14 @@ static int handle_show_version_files(int fd, int argc, char *argv[]) continue; ast_cli(fd, FORMAT, iterator->file, iterator->version); - + count_files++; if (havename) break; } AST_LIST_UNLOCK(&file_versions); + if (!havename) { + ast_cli(fd, "%d files listed.\n", count_files); + } if (havepattern) regfree(®exbuf); -- cgit v1.2.3