mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-06 18:03:34 +00:00
Fix callerid with sample.call like outgoing calls
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@707 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
pbx.c
2
pbx.c
@@ -3181,6 +3181,8 @@ int ast_pbx_outgoing_exten(char *type, int format, void *data, int timeout, char
|
||||
strncpy(chan->context, context, sizeof(chan->context) - 1);
|
||||
if (exten && strlen(exten))
|
||||
strncpy(chan->exten, exten, sizeof(chan->exten) - 1);
|
||||
if (callerid && strlen(callerid))
|
||||
strncpy(chan->callerid, callerid, sizeof(chan->callerid) - 1);
|
||||
if (priority > 0)
|
||||
chan->priority = priority;
|
||||
if (sync > 1) {
|
||||
|
||||
Reference in New Issue
Block a user