projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5f87bb
)
The priority gets incremented after raising an exception, so the priority should...
author
Mark Michelson
<mmichelson@digium.com>
Tue, 30 Oct 2007 17:07:26 +0000
(17:07 +0000)
committer
Mark Michelson
<mmichelson@digium.com>
Tue, 30 Oct 2007 17:07:26 +0000
(17:07 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87608
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
main/pbx.c
patch
|
blob
|
history
diff --git
a/main/pbx.c
b/main/pbx.c
index
ac1c781
..
24d5620
100644
(file)
--- a/
main/pbx.c
+++ b/
main/pbx.c
@@
-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;
}