Formatting changes.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55375 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Olle Johansson 19 years ago
parent ca635f3407
commit ec4eb25d8a

@ -7007,16 +7007,23 @@ static const char voicemail_show_zones_help[] =
"Usage: voicemail show zones\n" "Usage: voicemail show zones\n"
" Lists zone message formats\n"; " Lists zone message formats\n";
/*! \brief Show a list of voicemail users in the CLI */
static int handle_voicemail_show_users(int fd, int argc, char *argv[]) static int handle_voicemail_show_users(int fd, int argc, char *argv[])
{ {
struct ast_vm_user *vmu; struct ast_vm_user *vmu;
char *output_format = "%-10s %-5s %-25s %-10s %6s\n"; char *output_format = "%-10s %-5s %-25s %-10s %6s\n";
if ((argc < 3) || (argc > 5) || (argc == 4)) return RESULT_SHOWUSAGE; if ((argc < 3) || (argc > 5) || (argc == 4))
else if ((argc == 5) && strcmp(argv[3],"for")) return RESULT_SHOWUSAGE; return RESULT_SHOWUSAGE;
if ((argc == 5) && strcmp(argv[3],"for"))
return RESULT_SHOWUSAGE;
AST_LIST_LOCK(&users); AST_LIST_LOCK(&users);
if (!AST_LIST_EMPTY(&users)) { if (AST_LIST_EMPTY(&users)) {
ast_cli(fd, "There are no voicemail users currently defined\n");
AST_LIST_UNLOCK(&users);
return RESULT_FAILURE;
}
if (argc == 3) if (argc == 3)
ast_cli(fd, output_format, "Context", "Mbox", "User", "Zone", "NewMsg"); ast_cli(fd, output_format, "Context", "Mbox", "User", "Zone", "NewMsg");
else { else {
@ -7044,15 +7051,11 @@ static int handle_voicemail_show_users(int fd, int argc, char *argv[])
ast_cli(fd, output_format, vmu->context, vmu->mailbox, vmu->fullname, vmu->zonetag, count); ast_cli(fd, output_format, vmu->context, vmu->mailbox, vmu->fullname, vmu->zonetag, count);
} }
} }
} else {
ast_cli(fd, "There are no voicemail users currently defined\n");
AST_LIST_UNLOCK(&users);
return RESULT_FAILURE;
}
AST_LIST_UNLOCK(&users); AST_LIST_UNLOCK(&users);
return RESULT_SUCCESS; return RESULT_SUCCESS;
} }
/*! \brief Show a list of voicemail zones in the CLI */
static int handle_voicemail_show_zones(int fd, int argc, char *argv[]) static int handle_voicemail_show_zones(int fd, int argc, char *argv[])
{ {
struct vm_zone *zone; struct vm_zone *zone;

Loading…
Cancel
Save