From eb035201f8872ad3bc501b29f689d5dcb35ab0dc Mon Sep 17 00:00:00 2001 From: Jeremy McNamara Date: Tue, 16 Nov 2004 15:37:56 +0000 Subject: [PATCH] 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 --- channels/chan_h323.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/channels/chan_h323.c b/channels/chan_h323.c index fd50d5267c..5b92834c58 100755 --- a/channels/chan_h323.c +++ b/channels/chan_h323.c @@ -464,8 +464,8 @@ static int oh323_call(struct ast_channel *c, char *dest, int timeout) } else { sprintf(called_addr, "%s:%d",addr, pvt->options.port); } - ast_log(LOG_DEBUG, "Placing outgoing call to %s\n", called_addr); - res = h323_make_call(called_addr, &(pvt->cd), pvt->options); + ast_log(LOG_DEBUG, "Placing outgoing call to %s\n", dest); + 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;