The priority gets incremented after raising an exception, so the priority should be set to 0

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87608 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson 2007-10-30 17:07:26 +00:00
parent e5f87bbac3
commit e0d13e169c
1 changed files with 1 additions and 1 deletions

View File

@ -1319,7 +1319,7 @@ int pbx_builtin_raise_exception(struct ast_channel *chan, void *vtype)
ast_string_field_set(exception, context, chan->context);
ast_string_field_set(exception, exten, chan->exten);
exception->priority = chan->priority;
set_ext_pri(chan, "e", 1);
set_ext_pri(chan, "e", 0);
return 0;
}