[svn-commits] file: branch 1.2 r44501 - /branches/1.2/file.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Oct 5 12:55:41 MST 2006


Author: file
Date: Thu Oct  5 14:55:41 2006
New Revision: 44501

URL: http://svn.digium.com/view/asterisk?rev=44501&view=rev
Log:
Treat busy control frames as hangup in the file streaming core (issue #8097 reported by eldadran)

Modified:
    branches/1.2/file.c

Modified: branches/1.2/file.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/file.c?rev=44501&r1=44500&r2=44501&view=diff
==============================================================================
--- branches/1.2/file.c (original)
+++ branches/1.2/file.c Thu Oct  5 14:55:41 2006
@@ -1028,6 +1028,7 @@
 			case AST_FRAME_CONTROL:
 				switch(fr->subclass) {
 				case AST_CONTROL_HANGUP:
+				case AST_CONTROL_BUSY:
 					ast_frfree(fr);
 					return -1;
 				case AST_CONTROL_RINGING:



More information about the svn-commits mailing list