[asterisk-commits] mjordan: trunk r417649 - /trunk/apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 30 08:02:52 CDT 2014
Author: mjordan
Date: Mon Jun 30 08:02:43 2014
New Revision: 417649
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=417649
Log:
apps/app_voicemail: Fix compilation error introduced in r417591
Not sure why that change to ast_channel_alloc was made but ... okay.
Modified:
trunk/apps/app_voicemail.c
Modified: trunk/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=417649&r1=417648&r2=417649
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Mon Jun 30 08:02:43 2014
@@ -14045,7 +14045,7 @@
break;
}
- if (!(test_channel1 = ast_channel_alloc(0, AST_STATE_DOWN, NULL, NULL, NULL,
+ if (!(test_channel1 = ast_channel_alloc(0, AST_STATE_DOWN, NULL, NULL, NULL, NULL,
NULL, NULL, 0, 0, "TestChannel1"))) {
goto exit_vmsayname_test;
}
More information about the asterisk-commits
mailing list