[asterisk-commits] file: trunk r420858 - in /trunk: ./ apps/app_voicemail.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Aug 12 06:18:20 CDT 2014


Author: file
Date: Tue Aug 12 06:18:17 2014
New Revision: 420858

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=420858
Log:
app_voicemail: Fix the "test_voicemail_vm_info" unit test.
........

Merged revisions 420856 from http://svn.asterisk.org/svn/asterisk/branches/13

Modified:
    trunk/   (props changed)
    trunk/apps/app_voicemail.c

Propchange: trunk/
------------------------------------------------------------------------------
--- branch-13-merged (original)
+++ branch-13-merged Tue Aug 12 06:18:17 2014
@@ -1,1 +1,1 @@
-/branches/13:1-420494,420514,420534,420536,420538,420562,420577,420592,420609,420624,420639,420657,420717,420742,420758,420779,420796,420803,420808,420837
+/branches/13:1-420494,420514,420534,420536,420538,420562,420577,420592,420609,420624,420639,420657,420717,420742,420758,420779,420796,420803,420808,420837,420856

Modified: trunk/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=420858&r1=420857&r2=420858
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Tue Aug 12 06:18:17 2014
@@ -14542,7 +14542,7 @@
 
 	populate_defaults(vmu);
 
-	ast_copy_string(vmu->email, "vm-info-test at example.net", sizeof(vmu->email));
+	vmu->email = ast_strdup("vm-info-test at example.net");
 	ast_copy_string(vmu->fullname, "Test Framework Mailbox", sizeof(vmu->fullname));
 	ast_copy_string(vmu->pager, "vm-info-pager-test at example.net", sizeof(vmu->pager));
 	ast_copy_string(vmu->language, "en", sizeof(vmu->language));




More information about the asterisk-commits mailing list