summaryrefslogtreecommitdiff
path: root/channels/chan_jingle.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-07-21 17:31:28 +0000
committerRussell Bryant <russell@russellbryant.com>2006-07-21 17:31:28 +0000
commitca9ba719b6f4ef598bc3dc71bdee05d11d0c7687 (patch)
tree9a03027276c525f44c08eb5dc4d7b9035fa697c9 /channels/chan_jingle.c
parent1861dcdff5666cbac27288f7bdfdf40104d29d4d (diff)
Merge a new implementation of ast_inet_ntoa, our thread safe replacement for
inet_ntoa, which uses thread specific data (aka thread local storage) instead of stack allocatted buffers to store the result. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38042 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_jingle.c')
-rw-r--r--channels/chan_jingle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_jingle.c b/channels/chan_jingle.c
index 6ea1462ee..7ba3bc539 100644
--- a/channels/chan_jingle.c
+++ b/channels/chan_jingle.c
@@ -562,7 +562,7 @@ static int jingle_create_candidates(struct jingle *client, struct jingle_pvt *p,
snprintf(pass, sizeof(pass), "%08lx%08lx", ast_random(), ast_random());
ast_copy_string(ours1->username, user, sizeof(ours1->username));
ast_copy_string(ours1->password, pass, sizeof(ours1->password));
- ast_inet_ntoa(ours1->ip, sizeof(ours1->ip), us);
+ ast_copy_string(ours1->ip, ast_inet_ntoa(us), sizeof(ours1->ip));
ours1->protocol = AJI_PROTOCOL_UDP;
ours1->type = AJI_CONNECT_LOCAL;
ours1->generation = 0;