[asterisk-commits] mvanbaak: branch 1.4 r108961 - /branches/1.4/main/dial.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Mar 16 16:47:10 CDT 2008


Author: mvanbaak
Date: Sun Mar 16 16:47:10 2008
New Revision: 108961

URL: http://svn.digium.com/view/asterisk?view=rev&rev=108961
Log:
add missing break to case AST_CONTROL_SRCUPDATE

(closes issue #12228)
Reported by: andrew
Patches:
      SRC.patch uploaded by andrew (license 240)

Modified:
    branches/1.4/main/dial.c

Modified: branches/1.4/main/dial.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/dial.c?view=diff&rev=108961&r1=108960&r2=108961
==============================================================================
--- branches/1.4/main/dial.c (original)
+++ branches/1.4/main/dial.c Sun Mar 16 16:47:10 2008
@@ -362,6 +362,7 @@
 			if (option_verbose > 2)
 				ast_verbose (VERBOSE_PREFIX_3 "%s requested a source update, passing it to %s\n", channel->owner->name, chan->name);
 			ast_indicate(chan, AST_CONTROL_SRCUPDATE);
+			break;
 		case AST_CONTROL_PROCEEDING:
 			if (option_verbose > 2)
 				ast_verbose (VERBOSE_PREFIX_3 "%s is proceeding, passing it to %s\n", channel->owner->name, chan->name);




More information about the asterisk-commits mailing list