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
1.2-netsec
Russell Bryant 20 years ago
parent 380005fea4
commit 90aec0b0e3

@ -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;

Loading…
Cancel
Save