1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Fixes bugs in IPv6 code caused by recent commits.

This commit is contained in:
Ondrej Zajicek
2008-11-05 21:39:04 +01:00
parent baa9ef18c6
commit 1389f3699f
2 changed files with 2 additions and 2 deletions

View File

@@ -616,7 +616,7 @@ sk_set_ttl_int(sock *s)
int one = 1;
#ifdef IPV6
if (s->type != SK_UDP_MC && s->type != SK_IP_MC &&
setsockopt(fd, SOL_IPV6, IPV6_UNICAST_HOPS, &s->ttl, sizeof(s->ttl)) < 0)
setsockopt(s->fd, SOL_IPV6, IPV6_UNICAST_HOPS, &s->ttl, sizeof(s->ttl)) < 0)
return "IPV6_UNICAST_HOPS";
#else
if (setsockopt(s->fd, SOL_IP, IP_TTL, &s->ttl, sizeof(s->ttl)) < 0)