aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xasterisk.c6
1 files changed, 5 insertions, 1 deletions
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(&regexbuf);