Skip to content
Snippets Groups Projects
Commit 90aec0b0 authored by Russell Bryant's avatar Russell Bryant
Browse files

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
parent 380005fe
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment