b043b080a2
changes: -bugfixes -translation updates -portability improvements
18 lines
492 B
Text
18 lines
492 B
Text
$NetBSD: patch-aq,v 1.2 2009/04/07 11:40:20 drochner Exp $
|
|
|
|
--- gui/gdmchooser.c.orig 2008-09-03 20:35:57.000000000 +0200
|
|
+++ gui/gdmchooser.c
|
|
@@ -1128,6 +1128,13 @@ gdm_chooser_xdmcp_init (char **hosts)
|
|
have_ipv6 = FALSE;
|
|
else
|
|
have_ipv6 = TRUE;
|
|
+#ifdef __NetBSD__
|
|
+ /* NetBSD defaults to V6ONLY */
|
|
+ {
|
|
+ int no = 0;
|
|
+ setsockopt(sockfd, IPPROTO_IPV6, IPV6_V6ONLY, &no, sizeof(no));
|
|
+ }
|
|
+#endif
|
|
#endif
|
|
if ( ! have_ipv6) {
|
|
if ((sockfd = socket (AF_INET, SOCK_DGRAM, 0)) == -1) {
|