diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-01-25 20:59:59 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-01-25 20:59:59 -0600 |
commit | daf268baf10f53258168866f3d169dadf7e3740d (patch) | |
tree | 1ab40fe16e28499ed0f032048ac2298d6e47b80e /testing/fts/fts-uclibc.patch | |
parent | 91e0b79a67a9fd07431cf36931a33050a58fe8dd (diff) | |
download | aports-daf268baf10f53258168866f3d169dadf7e3740d.tar.bz2 aports-daf268baf10f53258168866f3d169dadf7e3740d.tar.xz |
testing/fts: promote to main
Diffstat (limited to 'testing/fts/fts-uclibc.patch')
-rw-r--r-- | testing/fts/fts-uclibc.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/testing/fts/fts-uclibc.patch b/testing/fts/fts-uclibc.patch deleted file mode 100644 index 359353039..000000000 --- a/testing/fts/fts-uclibc.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- fts.orig/fts.c -+++ fts/fts.c -@@ -31,6 +31,10 @@ - * SUCH DAMAGE. - */ - -+#define alignof(TYPE) ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2) -+#define ALIGNBYTES (alignof(long double) - 1) -+#define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) -+ - #if defined(LIBC_SCCS) && !defined(lint) - static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94"; - #endif /* LIBC_SCCS and not lint */ -@@ -652,10 +656,10 @@ - if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) - continue; - -- if ((p = fts_alloc(sp, dp->d_name, (int)dp->d_namlen)) == NULL) -+ if ((p = fts_alloc(sp, dp->d_name, (int)dp->d_reclen)) == NULL) - goto mem1; -- if (dp->d_namlen > maxlen) { -- if (fts_palloc(sp, (size_t)dp->d_namlen)) { -+ if (dp->d_reclen > maxlen) { -+ if (fts_palloc(sp, (size_t)dp->d_reclen)) { - /* - * No more memory for path or structures. Save - * errno, free up the current structure and the -@@ -675,7 +679,7 @@ - maxlen = sp->fts_pathlen - sp->fts_cur->fts_pathlen - 1; - } - -- p->fts_pathlen = len + dp->d_namlen + 1; -+ p->fts_pathlen = len + dp->d_reclen + 1; - p->fts_parent = sp->fts_cur; - p->fts_level = level; - -@@ -784,7 +788,7 @@ - /* If user needs stat info, stat buffer already allocated. */ - sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp; - --#ifdef DT_WHT -+#ifdef S_IFWHT - /* - * Whited-out files don't really exist. However, there's stat(2) file - * mask for them, so we set it so that programs (i.e., find) don't have |