mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 10:33:13 +00:00
Fix simple switch to not progress a call when call already progressed.
If a simple switch was started on a device and then a specific call made (such as redial or speed dial), on timeout of the simple switch the call would be attempted again. This patch only allows the simple switch to make a call if the substate is still in the collecting digits mode. Also added small debug message to dialAndAactivate sub. Tested by snuff and myself. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@340973 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4309,7 +4309,9 @@ static void *skinny_ss(void *data)
|
||||
}
|
||||
return NULL;
|
||||
} else {
|
||||
if (sub->substate == SUBSTATE_OFFHOOK) {
|
||||
dialandactivatesub(sub, sub->exten);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
} else {
|
||||
@@ -5463,6 +5465,9 @@ static void activatesub(struct skinny_subchannel *sub, int state)
|
||||
|
||||
static void dialandactivatesub(struct skinny_subchannel *sub, char exten[AST_MAX_EXTENSION])
|
||||
{
|
||||
if (skinnydebug) {
|
||||
ast_verb(3, "Sub %d - Dial %s and Activate\n", sub->callid, exten);
|
||||
}
|
||||
ast_copy_string(sub->exten, exten, sizeof(sub->exten));
|
||||
activatesub(sub, SUBSTATE_DIALING);
|
||||
}
|
||||
|
Reference in New Issue
Block a user