mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 02:26:23 +00:00
Don't only accept AST_DEVICE_UNKNOWN when we're trying to determine if the device is in use. (Bug # 5338)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6815 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -115,7 +115,7 @@ static int chanavail_exec(struct ast_channel *chan, void *data)
|
|||||||
snprintf(trychan, sizeof(trychan), "%s/%s",cur,number);
|
snprintf(trychan, sizeof(trychan), "%s/%s",cur,number);
|
||||||
status = inuse = ast_device_state(trychan);
|
status = inuse = ast_device_state(trychan);
|
||||||
}
|
}
|
||||||
if ((inuse < 1) && (tempchan = ast_request(tech, chan->nativeformats, number, &status))) {
|
if ((inuse <= 1) && (tempchan = ast_request(tech, chan->nativeformats, number, &status))) {
|
||||||
pbx_builtin_setvar_helper(chan, "AVAILCHAN", tempchan->name);
|
pbx_builtin_setvar_helper(chan, "AVAILCHAN", tempchan->name);
|
||||||
/* Store the originally used channel too */
|
/* Store the originally used channel too */
|
||||||
snprintf(tmp, sizeof(tmp), "%s/%s", tech, number);
|
snprintf(tmp, sizeof(tmp), "%s/%s", tech, number);
|
||||||
|
Reference in New Issue
Block a user