summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-10-01 14:59:40 +0000
committerMark Spencer <markster@digium.com>2003-10-01 14:59:40 +0000
commit16ae57d2223291b23b1a432772c5064691d0015f (patch)
tree4467a36317acdac6e906862ef17bb160e66be06b
parent9e68716e0e147d9708a804dd954def5b40542f52 (diff)
Fix channel Caller*ID
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1593 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index 6a4a177de..e6f0e98ae 100755
--- a/channel.c
+++ b/channel.c
@@ -1517,6 +1517,8 @@ struct ast_channel *__ast_request_and_dial(char *type, int format, void *data, i
ast_set_callerid(chan, oh->callerid, 1);
chan->priority = oh->priority;
}
+ if (callerid && strlen(callerid))
+ ast_set_callerid(chan, callerid, 1);
if (!ast_call(chan, data, 0)) {
while(timeout && (chan->_state != AST_STATE_UP)) {