mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
As of src d5c85ac6526d, the tzcode update removed the tzsetwall() function. Our tzcode upstream removed tzsetwall() in their commit d36f8f5b6983. The reason they did this was that tzsetwall() was "undocumented and ineffective." MFH: 2023Q1
11 lines
318 B
C
11 lines
318 B
C
--- programs/dtcm/libDtCmP/timeops.c.orig 2023-01-16 09:58:33.955866000 -0800
|
|
+++ programs/dtcm/libDtCmP/timeops.c 2023-01-16 10:47:36.739851000 -0800
|
|
@@ -963,7 +963,7 @@
|
|
*/
|
|
if (tzname==NULL) system("unset TZ\n");
|
|
#else
|
|
- if (tzname==NULL) tzsetwall();
|
|
+ if (tzname==NULL) tzset();
|
|
#endif /* SVR4 */
|
|
|
|
else {
|