From be45f421536b9da200c91f9088f21480308da67b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 24 Jul 2002 11:51:16 +0000 Subject: Update. 2002-07-24 Ulrich Drepper * sysdeps/unix/sysv/linux/opensock.c (__opensock): Prefer inet sockets on old kernels. --- sysdeps/unix/sysv/linux/opensock.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'sysdeps/unix/sysv/linux') diff --git a/sysdeps/unix/sysv/linux/opensock.c b/sysdeps/unix/sysv/linux/opensock.c index f3d3881b5f..86c4d39630 100644 --- a/sysdeps/unix/sysv/linux/opensock.c +++ b/sysdeps/unix/sysv/linux/opensock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -36,8 +36,15 @@ __opensock (void) const char procname[15]; } afs[] = { + /* The 2.2 kernels cannot handle ioctl(SIOCGIFCONF) on AF_UNIX sockets. + Give the kernel a chance to user inet sockets on old kernels. */ +#if __LINUX_KERNEL_VERSION < 132096 + { AF_INET, "" }, + { AF_UNIX, "net/unix" }, +#else { AF_UNIX, "net/unix" }, { AF_INET, "" }, +#endif { AF_INET6, "net/if_inet6" }, { AF_AX25, "net/ax25" }, { AF_NETROM, "net/nr" }, -- cgit 1.4.1