From 4ccc73bca703f3ae6e585a473493566bed2bfce8 Mon Sep 17 00:00:00 2001 From: markster Date: Wed, 1 Oct 2003 14:59:40 +0000 Subject: [PATCH] Fix channel Caller*ID git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1593 f38db490-d61c-443f-a65b-d21fe96a405b --- channel.c | 2 ++ 1 file changed, 2 insertions(+) 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)) {