mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-23 16:05:30 -07:00
chan_sip: Fix small behavioral change accidentally introduced in r369750
When removing the warning for AST_CONTROL_FLASH from sip_indicate, I also inadvertently changed the return value, which would likely make the indication not be sent in audio. This fixes that while still removing the warning message. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@369792 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+2
-1
@@ -7006,7 +7006,8 @@ static int sip_indicate(struct ast_channel *ast, int condition, const void *data
|
||||
break;
|
||||
case AST_CONTROL_UPDATE_RTP_PEER: /* Absorb this since it is handled by the bridge */
|
||||
break;
|
||||
case AST_CONTROL_FLASH: /* Absorb this since it is irrelevant to SIP. */
|
||||
case AST_CONTROL_FLASH: /* We don't currently handle AST_CONTROL_FLASH here, but it is expected, so we don't need to warn either. */
|
||||
res = -1;
|
||||
break;
|
||||
case -1:
|
||||
res = -1;
|
||||
|
||||
Reference in New Issue
Block a user