[asterisk-commits] mmichelson: branch 1.4 r140751 - /branches/1.4/apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 2 18:47:50 CDT 2008
Author: mmichelson
Date: Tue Sep 2 18:47:49 2008
New Revision: 140751
URL: http://svn.digium.com/view/asterisk?view=rev&rev=140751
Log:
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.
Modified:
branches/1.4/apps/app_voicemail.c
Modified: branches/1.4/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_voicemail.c?view=diff&rev=140751&r1=140750&r2=140751
==============================================================================
--- branches/1.4/apps/app_voicemail.c (original)
+++ branches/1.4/apps/app_voicemail.c Tue Sep 2 18:47:49 2008
@@ -7066,6 +7066,7 @@
#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
More information about the asterisk-commits
mailing list