From 90aec0b0e3002ada8f0448dee04ef319fa6f873d Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 28 Sep 2005 19:33:00 +0000 Subject: [PATCH] fix logic error that breaks queue exit (issue #5312) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6677 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_queue.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/app_queue.c b/apps/app_queue.c index 3f7c1614b1..626c7ca265 100755 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -1021,7 +1021,8 @@ static int valid_exit(struct queue_ent *qe, char digit) } /* We have an exact match */ - if (ast_goto_if_exists(qe->chan, qe->context, qe->digits, 1)) { + if (!ast_goto_if_exists(qe->chan, qe->context, qe->digits, 1)) { + /* Return 1 on a successful goto */ return 1; } return 0;