From 82a1ec851025ccae54dea43149915707f890746b Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 8 Sep 2022 20:08:32 -0500 Subject: Assume HAVE_TZSET in time/mktime.c This patch does not affect glibc. It affects only Gnulib-specific code and is for coordination with Gnulib. --- time/mktime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'time') diff --git a/time/mktime.c b/time/mktime.c index 494c89bf54..aa12e28e16 100644 --- a/time/mktime.c +++ b/time/mktime.c @@ -94,7 +94,7 @@ my_tzset (void) const char *tz = getenv ("TZ"); if (tz != NULL && strchr (tz, '/') != NULL) _putenv ("TZ="); -# elif HAVE_TZSET +# else tzset (); # endif } -- cgit 1.4.1