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:
Jeremy McNamara
2004-11-11 20:34:46 +00:00
parent 7563b0ab7d
commit b1b95fe6f1

View File

@@ -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;