Browse Source

fix erroneously reported 0.0.0.0 address when bridging from ipv6

Conflicts:
	daemon/call.c
changes/69/8769/1
Richard Fuchs 11 years ago
parent
commit
5fc4a3a7bd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/call.c

+ 1
- 1
daemon/call.c View File

@ -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;
}


Loading…
Cancel
Save