mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
Use passed dest value, for the moment. A better fix is being worked on
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4211 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -462,8 +462,8 @@ static int oh323_call(struct ast_channel *c, char *dest, int timeout)
|
||||
}
|
||||
}
|
||||
pvt->outgoing = 1;
|
||||
ast_log(LOG_DEBUG, "Placing outgoing call to %s:%d\n", called_addr, pvt->options.port);
|
||||
res = h323_make_call(called_addr, &(pvt->cd), pvt->options);
|
||||
ast_log(LOG_DEBUG, "Placing outgoing call to %s:%d\n", dest, pvt->options.port);
|
||||
res = h323_make_call(dest, &(pvt->cd), pvt->options);
|
||||
if (res) {
|
||||
ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name);
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user