aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_local.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 16:36:13 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 16:36:13 +0000
commit2ab75628b15e3fa4f49d7bd5b46a30d3512ce232 (patch)
tree3e766bb26007dda1854296474ca8daf8bfd44235 /channels/chan_local.c
parent2350e6d4d00b08270d96e447acf32c21192b4b75 (diff)
Merged revisions 29464 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r29464 | file | 2006-05-22 13:33:03 -0300 (Mon, 22 May 2006) | 2 lines Preserve presentation bit when going through chan_local (issue #7002 reported by acunningham) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29466 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_local.c')
-rw-r--r--channels/chan_local.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_local.c b/channels/chan_local.c
index 17fc36ae6..7ea712f0b 100644
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -369,7 +369,7 @@ static int local_call(struct ast_channel *ast, char *dest, int timeout)
p->chan->cid.cid_name = ast_strdup(p->owner->cid.cid_name);
p->chan->cid.cid_rdnis = ast_strdup(p->owner->cid.cid_rdnis);
p->chan->cid.cid_ani = ast_strdup(p->owner->cid.cid_ani);
-
+ p->chan->cid.cid_pres = p->owner->cid.cid_pres;
ast_string_field_set(p->chan, language, p->owner->language);
ast_string_field_set(p->chan, accountcode, p->owner->accountcode);
p->chan->cdrflags = p->owner->cdrflags;