[asterisk-commits] coreyfarrell: branch 12 r427088 - in /branches/12: ./ apps/app_voicemail.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Nov 2 20:33:20 CST 2014


Author: coreyfarrell
Date: Sun Nov  2 20:33:17 2014
New Revision: 427088

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=427088
Log:
Fix compile error caused by review 4138

There is no procedure called ast_closeframe, fix code to use
ast_closestream.

Reported By: Matt Jordan
........

Merged revisions 427087 from http://svn.asterisk.org/svn/asterisk/branches/11

Modified:
    branches/12/   (props changed)
    branches/12/apps/app_voicemail.c

Propchange: branches/12/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.

Modified: branches/12/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/apps/app_voicemail.c?view=diff&rev=427088&r1=427087&r2=427088
==============================================================================
--- branches/12/apps/app_voicemail.c (original)
+++ branches/12/apps/app_voicemail.c Sun Nov  2 20:33:17 2014
@@ -6132,7 +6132,7 @@
 			ast_getformatbyname(recdata->recording_ext, &result);
 			duration = (int) (framelength / ast_format_rate(&result));
 		}
-		ast_closeframe(recording_fs);
+		ast_closestream(recording_fs);
 	}
 
 	/* If the duration was below the minimum duration for the user, let's just drop the whole thing now */




More information about the asterisk-commits mailing list