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
This commit is contained in:
Kevin P. Fleming 2005-08-22 18:45:41 +00:00
parent 1b420b7696
commit 971091a17c
1 changed files with 5 additions and 1 deletions

View File

@ -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(&regexbuf);