Skip to content
Snippets Groups Projects
Commit 7669c0ed authored by Joshua Colp's avatar Joshua Colp
Browse files

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
parent 058ec10e
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment