From: Mark Spencer Date: Thu, 14 Aug 2003 20:42:25 +0000 (+0000) Subject: Send callerid on callback agents (bug #103) X-Git-Tag: 0.5.0~167 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5aab786c353470ffdbcb7893c8ef31f447cef593;p=thirdparty%2Fasterisk.git Send callerid on callback agents (bug #103) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1329 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_agent.c b/channels/chan_agent.c index 3a67573e56..5db7ded731 100755 --- a/channels/chan_agent.c +++ b/channels/chan_agent.c @@ -375,6 +375,12 @@ static int agent_call(struct ast_channel *ast, char *dest, int timeout) /* Call on this agent */ if (option_verbose > 2) ast_verbose(VERBOSE_PREFIX_3 "outgoing agentcall, to agent '%s', on '%s'\n", p->agent, p->chan->name); + if (p->chan->callerid) + free(p->chan->callerid); + if (ast->callerid) + p->chan->callerid = strdup(ast->callerid); + else + p->chan->callerid = NULL; res = ast_call(p->chan, p->loginchan, 0); CLEANUP(ast,p); ast_mutex_unlock(&p->lock);