aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_h323.c
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-16 15:37:56 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-16 15:37:56 +0000
commit12dbdf856d780833262957f1e76de53406bb1e96 (patch)
tree207039852e1e293cd5368f414f69f42f674e5cce /channels/chan_h323.c
parentb645d62a1f00ed60de1360c04b78a3c9e160a348 (diff)
Another temp fix attempt, until I can do it correctly.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4264 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 fd50d5267..5b92834c5 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;