34 lines
971 B
Diff
34 lines
971 B
Diff
|
From: Adam Mizerski <adam@mizerski.pl>
|
||
|
Date: 2013-10-26 18:45:32 +0200
|
||
|
Subject: eglibc-fts-without-LFS
|
||
|
Upstream: no
|
||
|
|
||
|
Patch copied from debian.
|
||
|
|
||
|
--- a/libfakeroot.c
|
||
|
+++ b/libfakeroot.c
|
||
|
@@ -1949,11 +1949,7 @@
|
||
|
|| r->fts_info == FTS_NS || r->fts_info == FTS_NSOK))
|
||
|
r->fts_statp = NULL; /* Otherwise fts_statp may be a random pointer */
|
||
|
if(r && r->fts_statp) { /* Should we bother checking fts_info here? */
|
||
|
-# if defined(STAT64_SUPPORT) && !defined(__APPLE__)
|
||
|
- SEND_GET_STAT64(r->fts_statp, _STAT_VER);
|
||
|
-# else
|
||
|
SEND_GET_STAT(r->fts_statp, _STAT_VER);
|
||
|
-# endif
|
||
|
}
|
||
|
|
||
|
return r;
|
||
|
@@ -1972,11 +1968,7 @@
|
||
|
first=next_fts_children(ftsp, options);
|
||
|
for(r = first; r; r = r->fts_link) {
|
||
|
if(r && r->fts_statp) { /* Should we bother checking fts_info here? */
|
||
|
-# if defined(STAT64_SUPPORT) && !defined(__APPLE__)
|
||
|
- SEND_GET_STAT64(r->fts_statp, _STAT_VER);
|
||
|
-# else
|
||
|
SEND_GET_STAT(r->fts_statp, _STAT_VER);
|
||
|
-# endif
|
||
|
}
|
||
|
}
|
||
|
|