From 46b75d5f1790ce3bdeabce0e2f9ebe609da3b261 Mon Sep 17 00:00:00 2001 From: "Dwayne M. Hubbard" <dwayne.hubbard@gmail.com> Date: Thu, 16 Aug 2007 17:44:25 +0000 Subject: [PATCH] added counter for voicemail show users, issue 10462, thanks junky git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79724 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 5a8f4521ca..c2e8afdac0 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -7505,6 +7505,7 @@ static int handle_voicemail_show_users(int fd, int argc, char *argv[]) struct ast_vm_user *vmu; char *output_format = "%-10s %-5s %-25s %-10s %6s\n"; const char *context = NULL; + int users_counter = 0; if ((argc < 3) || (argc > 5) || (argc == 4)) return RESULT_SHOWUSAGE; @@ -7553,9 +7554,11 @@ static int handle_voicemail_show_users(int fd, int argc, char *argv[]) inboxcount(tmp, &newmsgs, &oldmsgs); snprintf(count,sizeof(count),"%d",newmsgs); ast_cli(fd, output_format, vmu->context, vmu->mailbox, vmu->fullname, vmu->zonetag, count); + users_counter++; } } AST_LIST_UNLOCK(&users); + ast_cli(fd, "%d voicemail users configured.\n", users_counter); return RESULT_SUCCESS; } -- GitLab