aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_h323.c
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-11 20:34:46 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-11 20:34:46 +0000
commitced27b9053f782f03a713d863afe4a16006fb706 (patch)
tree58679f9fb4f923e687d92681e0f3629903c6939a /channels/chan_h323.c
parentd6bd5bc372a88b3844dff6c35fe377b75e7eaa39 (diff)
Use passed dest value, for the moment. A better fix is being worked on
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4211 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_h323.c')
-rwxr-xr-xchannels/chan_h323.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_h323.c b/channels/chan_h323.c
index ae4b5c352..615748775 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;