summaryrefslogtreecommitdiff
path: root/main/pbx.c
diff options
context:
space:
mode:
authorAlec L Davis <sivad.a@paradise.net.nz>2010-01-20 08:18:45 +0000
committerAlec L Davis <sivad.a@paradise.net.nz>2010-01-20 08:18:45 +0000
commitc7be0271512ecca041ad8cce1483c85b52cef1b8 (patch)
tree8ddac0f55ae66752718ab54cc2dcadfada46820f /main/pbx.c
parent8fd9401e3d4e92512245b6beed73d1176431ef3b (diff)
Update CDR variables as pbx starts
Allows CDR variables added in cdr.c:set_one_cid to become visable during the call, by executing ast_cdr_update() early in __ast_pbx run. Reverts sig_pri changes in trunk that are specific to isdn technology only. (closes issue #16638) Reported by: alecdavis Patches: cdr_update.diff3.txt uploaded by alecdavis (license 585) Tested by: alecdavis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@241416 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/pbx.c')
-rw-r--r--main/pbx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 6f67abaea..1b6e498f5 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -4628,6 +4628,10 @@ static enum ast_pbx_result __ast_pbx_run(struct ast_channel *c,
ast_copy_string(c->context, "default", sizeof(c->context));
}
}
+ if (c->cdr) {
+ /* allow CDR variables that have been collected after channel was created to be visible during call */
+ ast_cdr_update(c);
+ }
for (;;) {
char dst_exten[256]; /* buffer to accumulate digits */
int pos = 0; /* XXX should check bounds */