aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-02 23:51:03 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-02 23:51:03 +0000
commitb370b4a9c61c213e3887ea6ceefd0fb007db4240 (patch)
treed751b5db84660a210fc5199e7e041890cef5118f /apps
parent94b9a900aa33bb52331d9b2d8a07ca2ba52cfb8e (diff)
Merged revisions 140752 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r140752 | mmichelson | 2008-09-02 18:48:25 -0500 (Tue, 02 Sep 2008) | 14 lines Merged revisions 140751 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r140751 | mmichelson | 2008-09-02 18:47:49 -0500 (Tue, 02 Sep 2008) | 6 lines After adding the context checking to app_voicemail for IMAP storage, I left out a crucial place to copy the context to the vm_state structure. This is the correction. ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@140755 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 4d0ad2f8e..beeed87d6 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -8626,6 +8626,7 @@ static int vm_execmain(struct ast_channel *chan, void *data)
#ifdef IMAP_STORAGE
vms.interactive = 1;
vms.updated = 1;
+ ast_copy_string(vms.context, vmu->context, sizeof(vms.context));
vmstate_insert(&vms);
init_vm_state(&vms);
#endif