From 5fc4a3a7bde9ca8a40a0ae344afee2048ad84efc Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 25 Feb 2015 08:29:08 -0500 Subject: [PATCH] fix erroneously reported 0.0.0.0 address when bridging from ipv6 Conflicts: daemon/call.c --- daemon/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index 1db183019..c56d29c87 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -2362,7 +2362,7 @@ static int call_stream_address4(char *o, struct packet_stream *ps, enum stream_a l = 4; } - if (!in6_to_4(&ps->advertised_endpoint.ip46)) { + if (is_addr_unspecified(&ps->advertised_endpoint.ip46)) { strcpy(o + l, "0.0.0.0"); l += 7; }