[asterisk-commits] mmichelson: branch 1.6.1 r140755 - in /branches/1.6.1: ./ apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 2 18:51:03 CDT 2008
Author: mmichelson
Date: Tue Sep 2 18:51:03 2008
New Revision: 140755
URL: http://svn.digium.com/view/asterisk?view=rev&rev=140755
Log:
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.
........
................
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/apps/app_voicemail.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_voicemail.c?view=diff&rev=140755&r1=140754&r2=140755
==============================================================================
--- branches/1.6.1/apps/app_voicemail.c (original)
+++ branches/1.6.1/apps/app_voicemail.c Tue Sep 2 18:51:03 2008
@@ -8626,6 +8626,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