summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-10-31 23:34:22 +0000
committerMark Spencer <markster@digium.com>2004-10-31 23:34:22 +0000
commitb8885530f46e1f72b4b5a3c0b3b0d6c20da388b5 (patch)
tree0d2a88b03f8c5281247a228fdd7ab275c9642faf /apps
parentc18dfe9bf63e0031f58bd984cd9b45a66456780e (diff)
Pass redirecting number on PRI calls (bug #2763)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4134 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_dial.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index eeb9a97e5..04ea18b00 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -839,6 +839,8 @@ static int dial_exec(struct ast_channel *chan, void *data)
tmp->chan->cdrflags = chan->cdrflags;
if (ast_strlen_zero(tmp->chan->musicclass))
strncpy(tmp->chan->musicclass, chan->musicclass, sizeof(tmp->chan->musicclass) - 1);
+ if (chan->cid.cid_rdnis)
+ tmp->chan->cid.cid_rdnis = strdup(chan->cid.cid_rdnis);
/* Pass callingpres setting */
tmp->chan->cid.cid_pres = chan->cid.cid_pres;
/* Pass type of number */