From 9a7ab0769b295cbf5232140401742a8f34bda3de Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Thu, 22 Jul 2021 18:29:57 +0000 Subject: hurd: Fix glob lstat compatibility 84f7ce84474c ("posix: Add glob64 with 64-bit time_t support") replaced GLOB_NO_LSTAT with defining GLOB_LSTAT and GLOB_LSTAT64, but the posix and gnu versions of the change were missing in the commit. --- sysdeps/gnu/glob-lstat-compat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sysdeps/gnu/glob-lstat-compat.c') diff --git a/sysdeps/gnu/glob-lstat-compat.c b/sysdeps/gnu/glob-lstat-compat.c index 128f84c07c..caa485935e 100644 --- a/sysdeps/gnu/glob-lstat-compat.c +++ b/sysdeps/gnu/glob-lstat-compat.c @@ -29,7 +29,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 -- cgit 1.4.1