From: Dwayne M. Hubbard Date: Thu, 16 Aug 2007 17:44:25 +0000 (+0000) Subject: added counter for voicemail show users, issue 10462, thanks junky X-Git-Tag: 1.6.0-beta1~3^2~1711 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46b75d5f1790ce3bdeabce0e2f9ebe609da3b261;p=thirdparty%2Fasterisk.git 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 --- 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; }