forked from pool/xorg-x11-server
Stefan Dirsch
fb423f1314
Copy from home:rmax:branches:X11:XOrg/xorg-x11-server via accept of submit request 45854 revision 2. Request was accepted with message: reviewed ok. OBS-URL: https://build.opensuse.org/request/show/45854 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-server?expand=0&rev=279
29 lines
992 B
Diff
29 lines
992 B
Diff
--- xorg-server-1.6.5/os/access.c
|
|
+++ xorg-server-1.6.5/os/access.c
|
|
@@ -781,7 +781,9 @@
|
|
|
|
/*
|
|
* ignore 'localhost' entries as they're not useful
|
|
- * on the other end of the wire
|
|
+ * on the other end of the wire and because on hosts
|
|
+ * with shared home dirs they'll result in conflic
|
|
+ * entries in ~/.Xauthority
|
|
*/
|
|
if (ifr->ifa_flags & IFF_LOOPBACK)
|
|
continue;
|
|
@@ -804,6 +806,14 @@
|
|
else if (family == FamilyInternet6 &&
|
|
IN6_IS_ADDR_LOOPBACK((struct in6_addr *)addr))
|
|
continue;
|
|
+
|
|
+ /* Ignore IPv6 link local addresses (fe80::/10), because
|
|
+ * they need a scope identifier, which we have no way
|
|
+ * of telling to the other end.
|
|
+ */
|
|
+ if (family == FamilyInternet6 &&
|
|
+ IN6_IS_ADDR_LINKLOCAL((struct in6_addr *)addr))
|
|
+ continue;
|
|
#endif
|
|
XdmcpRegisterConnection(family, (char *)addr, len);
|
|
#if defined(IPv6) && defined(AF_INET6)
|