Make the database show command spit out how many results it got. (issue #9332 reported by junky)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59080 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2007-03-21 02:46:02 +00:00
parent 058ec10e42
commit 7669c0ede7

View File

@@ -358,6 +358,7 @@ static int database_showkey(int fd, int argc, char *argv[])
char *keys, *values;
int res;
int pass;
int counter = 0;
if (argc == 3) {
/* Key only */
@@ -389,9 +390,11 @@ static int database_showkey(int fd, int argc, char *argv[])
}
if (subkeymatch(keys, suffix)) {
ast_cli(fd, "%-50s: %-25s\n", keys, values);
counter++;
}
}
ast_mutex_unlock(&dblock);
ast_cli(fd, "%d results found.\n", counter);
return RESULT_SUCCESS;
}