Browse Source

fix erroneously reported 0.0.0.0 address when bridging from ipv6

Conflicts:
	daemon/call.c
alutay/test_viabranch
Richard Fuchs 11 years ago
parent
commit
7b56057b64
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/call.c

+ 1
- 1
daemon/call.c View File

@ -2582,7 +2582,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;
}


Loading…
Cancel
Save