diff --git a/main/db.c b/main/db.c index a088a803ff97237bc36837deeb45d5b2d3651601..292e7af86c2e7cd9aa9547d6583b19e4c61c8366 100644 --- a/main/db.c +++ b/main/db.c @@ -306,6 +306,7 @@ static int database_show(int fd, int argc, char *argv[]) char *keys, *values; int res; int pass; + int counter = 0; if (argc == 4) { /* Family and key tree */ @@ -342,10 +343,12 @@ static int database_show(int fd, int argc, char *argv[]) values = "<bad value>"; } if (keymatch(keys, prefix)) { - ast_cli(fd, "%-50s: %-25s\n", keys, values); + ast_cli(fd, "%-50s: %-25s\n", keys, values); + counter++; } } ast_mutex_unlock(&dblock); + ast_cli(fd, "%d results found.\n", counter); return RESULT_SUCCESS; } @@ -387,8 +390,8 @@ static int database_showkey(int fd, int argc, char *argv[]) values = "<bad value>"; } if (subkeymatch(keys, suffix)) { - ast_cli(fd, "%-50s: %-25s\n", keys, values); - counter++; + ast_cli(fd, "%-50s: %-25s\n", keys, values); + counter++; } } ast_mutex_unlock(&dblock);