Another temp fix attempt, until I can do it correctly.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4264 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jeremy McNamara
2004-11-16 15:37:56 +00:00
parent e6a9e6f90c
commit eb035201f8

View File

@@ -464,8 +464,8 @@ static int oh323_call(struct ast_channel *c, char *dest, int timeout)
} else { } else {
sprintf(called_addr, "%s:%d",addr, pvt->options.port); sprintf(called_addr, "%s:%d",addr, pvt->options.port);
} }
ast_log(LOG_DEBUG, "Placing outgoing call to %s\n", called_addr); ast_log(LOG_DEBUG, "Placing outgoing call to %s\n", dest);
res = h323_make_call(called_addr, &(pvt->cd), pvt->options); res = h323_make_call(dest, &(pvt->cd), pvt->options);
if (res) { if (res) {
ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name); ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name);
return -1; return -1;