From: Paul Eggert Date: Fri, 9 Sep 2022 01:08:32 +0000 (-0500) Subject: Assume HAVE_TZSET in time/mktime.c X-Git-Tag: glibc-2.37~355 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82a1ec851025ccae54dea43149915707f890746b;p=thirdparty%2Fglibc.git 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. --- diff --git a/time/mktime.c b/time/mktime.c index 494c89bf546..aa12e28e168 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 }