summaryrefslogtreecommitdiffstats
path: root/abs/core/iputils/iputils-20070202-no-open-max.patch
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-11 20:19:16 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-11 20:19:16 (GMT)
commit67a8448f689c98cfee4058376d7f9eb614e2db05 (patch)
tree9e7436d6e0603551539777f665df2e6b60a36308 /abs/core/iputils/iputils-20070202-no-open-max.patch
parent3d2398166dc2a96123d22af315e2f2073f6bb32f (diff)
parent8014e8344b6f1a789a938fccc3b356a525ce8207 (diff)
downloadlinhes_pkgbuild-67a8448f689c98cfee4058376d7f9eb614e2db05.zip
linhes_pkgbuild-67a8448f689c98cfee4058376d7f9eb614e2db05.tar.gz
linhes_pkgbuild-67a8448f689c98cfee4058376d7f9eb614e2db05.tar.bz2
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/iputils/iputils-20070202-no-open-max.patch')
-rw-r--r--abs/core/iputils/iputils-20070202-no-open-max.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/abs/core/iputils/iputils-20070202-no-open-max.patch b/abs/core/iputils/iputils-20070202-no-open-max.patch
deleted file mode 100644
index 5013ba4..0000000
--- a/abs/core/iputils/iputils-20070202-no-open-max.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-the OPEN_MAX define has been removed in newer kernel headers so use the
-proper method of getting the value dynamically
-
-http://bugs.gentoo.org/195861
-
---- a/rdisc.c
-+++ b/rdisc.c
-@@ -247,7 +247,7 @@ void do_fork(void)
- if ((pid=fork()) != 0)
- exit(0);
-
-- for (t = 0; t < OPEN_MAX; t++)
-+ for (t = 0; t < sysconf(_SC_OPEN_MAX); t++)
- if (t != s)
- close(t);
-