From: Jeremy McNamara Date: Thu, 11 Nov 2004 20:34:46 +0000 (+0000) Subject: Use passed dest value, for the moment. A better fix is being worked on X-Git-Tag: 1.2.0-beta1~1855 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1b95fe6f10879d085fa00f07f9e115a9bf93d62;p=thirdparty%2Fasterisk.git 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 --- diff --git a/channels/chan_h323.c b/channels/chan_h323.c index ae4b5c3525..6157487751 100755 --- a/channels/chan_h323.c +++ b/channels/chan_h323.c @@ -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;