View | Details | Raw Unified | Return to bug 270757
Collapse All | Expand All

(-)b/net/radvd/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=	radvd
1
PORTNAME=	radvd
2
PORTVERSION=	2.19
2
PORTVERSION=	2.19
3
PORTREVISION=	1
3
PORTREVISION=	2
4
CATEGORIES=	net
4
CATEGORIES=	net
5
MASTER_SITES=	http://www.litech.org/radvd/dist/
5
MASTER_SITES=	http://www.litech.org/radvd/dist/
6
6
(-)b/net/radvd/files/patch-device-bsd44.c (-1 / +1 lines)
Lines 20-26 Link Here
20
+	}
20
+	}
21
+
21
+
22
+	if (setsockopt(sock, IPPROTO_IPV6, IPV6_JOIN_GROUP,
22
+	if (setsockopt(sock, IPPROTO_IPV6, IPV6_JOIN_GROUP,
23
+			&mreq, sizeof(mreq)) < 0 && !iface->state_info.ready) {
23
+			&mreq, sizeof(mreq)) < 0 && errno != EADDRINUSE) {
24
+		flog(LOG_ERR, "can't join ipv6-allrouters on %s", iface->props.name);
24
+		flog(LOG_ERR, "can't join ipv6-allrouters on %s", iface->props.name);
25
+		return (-1);
25
+		return (-1);
26
+	}
26
+	}

Return to bug 270757