From 82d702051630e842a6a2df00361021f31a8be791 Mon Sep 17 00:00:00 2001 From: Josh Roberson Date: Tue, 18 Oct 2005 03:29:12 +0000 Subject: [PATCH] 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 --- apps/app_chanisavail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_chanisavail.c b/apps/app_chanisavail.c index 4e5e524495..7dc2ba023a 100755 --- a/apps/app_chanisavail.c +++ b/apps/app_chanisavail.c @@ -115,7 +115,7 @@ static int chanavail_exec(struct ast_channel *chan, void *data) snprintf(trychan, sizeof(trychan), "%s/%s",cur,number); 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); /* Store the originally used channel too */ snprintf(tmp, sizeof(tmp), "%s/%s", tech, number);