]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
After adding the context checking to app_voicemail
authorMark Michelson <mmichelson@digium.com>
Tue, 2 Sep 2008 23:47:49 +0000 (23:47 +0000)
committerMark Michelson <mmichelson@digium.com>
Tue, 2 Sep 2008 23:47:49 +0000 (23:47 +0000)
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: https://origsvn.digium.com/svn/asterisk/branches/1.4@140751 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index f430d3b8989c6604940abfe2d35896bd33e25026..711e9b5a514d7e143dc184fa89e9ba4336553d61 100644 (file)
@@ -7066,6 +7066,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