From: Russell Bryant Date: Wed, 28 Sep 2005 19:33:00 +0000 (+0000) Subject: fix logic error that breaks queue exit (issue #5312) X-Git-Tag: 1.2.0-beta2~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90aec0b0e3002ada8f0448dee04ef319fa6f873d;p=thirdparty%2Fasterisk.git 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 --- 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;