From 971091a17ce26c36dcc8940b6f3a50d750b6e4ae Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 22 Aug 2005 18:45:41 +0000 Subject: [PATCH] add count of files used to build Asterisk/modules (issue #4992 with text mod) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6350 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- asterisk.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/asterisk.c b/asterisk.c index ca3aec3a97..fd28291ec7 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);