summaryrefslogtreecommitdiff
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-01-30 16:54:20 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-01-30 16:54:20 +0000
commit0d9a551f30c665033cd3ddb820d80bbaef4e2c83 (patch)
tree55e9b1feb759eec865f24f23ce23d735774179a7 /apps/app_voicemail.c
parent94325433a278ea0559c86580bb4e92cd1eb1cd83 (diff)
Make the VoicemailUsersList AMI command consistent with other manager list functions.
(closes issue #11874) Reported by: srt Patches: voicemail_ami-11847.patch uploaded by srt (license 378) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@101269 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_voicemail.c')
-rw-r--r--apps/app_voicemail.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index ad1f0a23a..27146eecb 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -8040,10 +8040,11 @@ static int manager_list_voicemail_users(struct mansession *s, const struct messa
if (AST_LIST_EMPTY(&users)) {
astman_send_ack(s, m, "There are no voicemail users currently defined.");
AST_LIST_UNLOCK(&users);
+ astman_append(s, "Event: VoicemailUserEntryComplete\r\n%s\r\n", actionid);
return RESULT_SUCCESS;
}
- astman_send_ack(s, m, "Voicemail user list will follow\r\n");
+ astman_send_ack(s, m, "Voicemail user list will follow");
AST_LIST_TRAVERSE(&users, vmu, list) {
char dirname[256];