From: Felix Fietkau <nbd@openwrt.org>
Date: Sun, 22 Oct 2006 20:33:36 +0000 (+0000)
Subject: use getdents64 in the uClibc glob function
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=440fef816e81256780c36ac22c5218f525ccd5f5;p=openwrt%2Fstaging%2Fansuel.git

use getdents64 in the uClibc glob function

SVN-Revision: 5256
---

diff --git a/toolchain/uClibc/patches/160-glob_use_getdents64.patch b/toolchain/uClibc/patches/160-glob_use_getdents64.patch
new file mode 100644
index 0000000000..f6e3e65920
--- /dev/null
+++ b/toolchain/uClibc/patches/160-glob_use_getdents64.patch
@@ -0,0 +1,12 @@
+diff -ur uClibc.old/libc/misc/glob/glob.c uClibc.dev/libc/misc/glob/glob.c
+--- uClibc.old/libc/misc/glob/glob.c	2005-01-12 08:59:21.000000000 +0100
++++ uClibc.dev/libc/misc/glob/glob.c	2006-10-22 22:30:29.000000000 +0200
+@@ -420,7 +420,7 @@
+ 	}
+       else
+ 	{
+-	  struct dirent *d = readdir ((DIR *) stream);
++	  struct dirent64 *d = readdir64 ((DIR *) stream);
+ 	  if (d == NULL)
+ 	    break;
+ 	  if (! (d->d_ino != 0))