diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-02 20:17:07 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-06-15 10:42:11 -0300 |
commit | 84f7ce84474c1648ce96884f1c91ca7b97ca3fc2 (patch) | |
tree | 4a19687d260d69a380414d41a592fb261841e5cd /posix/glob64-lstat-compat.c | |
parent | 47f24c21ee38701ae275aa9e451f70fa3e77478c (diff) | |
download | glibc-84f7ce84474c1648ce96884f1c91ca7b97ca3fc2.tar glibc-84f7ce84474c1648ce96884f1c91ca7b97ca3fc2.tar.gz glibc-84f7ce84474c1648ce96884f1c91ca7b97ca3fc2.tar.bz2 glibc-84f7ce84474c1648ce96884f1c91ca7b97ca3fc2.zip |
posix: Add glob64 with 64-bit time_t support
The glob might pass a different stat struct for gl_stat and gl_lstat
when GLOB_ALTDIRFUNC is used. This requires add a new 64-bit time
version that also uses 64-bit time stat functions.
Checked on i686-linux-gnu and x86_64-linux-gnu.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'posix/glob64-lstat-compat.c')
-rw-r--r-- | posix/glob64-lstat-compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/glob64-lstat-compat.c b/posix/glob64-lstat-compat.c index bd81a1e390..e90d4ae93e 100644 --- a/posix/glob64-lstat-compat.c +++ b/posix/glob64-lstat-compat.c @@ -28,7 +28,8 @@ # define GLOB_ATTRIBUTE attribute_compat_text_section /* Avoid calling gl_lstat with GLOB_ALTDIRFUNC. */ -# define GLOB_NO_LSTAT +# define GLOB_LSTAT gl_stat +# define GLOB_LSTAT64 __stat64 # include <posix/glob64.c> |