]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Assume HAVE_TZSET in time/mktime.c
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 9 Sep 2022 01:08:32 +0000 (20:08 -0500)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 9 Sep 2022 03:55:54 +0000 (22:55 -0500)
This patch does not affect glibc.  It affects only Gnulib-specific
code and is for coordination with Gnulib.

time/mktime.c

index 494c89bf546e01072d6b939649d88c58174e2648..aa12e28e1681db151cd691043ffd57fe099e5ed6 100644 (file)
@@ -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
 }