aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_local.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/chan_local.c')
-rw-r--r--channels/chan_local.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_local.c b/channels/chan_local.c
index 68dbd7d89..a865aa6b4 100644
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -134,9 +134,9 @@ static int local_devicestate(void *data)
ast_log(LOG_DEBUG, "Checking if extension %s@%s exists (devicestate)\n", exten, context);
res = ast_exists_extension(NULL, context, exten, 1, NULL);
if (!res)
- return AST_DEVICE_NOT_INUSE;
+ return AST_DEVICE_INVALID;
else
- return AST_DEVICE_INUSE;
+ return AST_DEVICE_UNKNOWN;
}
static int local_queue_frame(struct local_pvt *p, int isoutbound, struct ast_frame *f, struct ast_channel *us)