diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2024-03-29 01:16:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2024-03-29 01:16:31 +0000 |
commit | 09e9f6ec031d86eb5c2b6cdf15fbaeaf8877c6c8 (patch) | |
tree | a8f19336c793c05718e3ca517a41c278a674d4b8 /usr.bin/mandoc | |
parent | a80c08a944b509e4f07b68cd9c2a9a90c664bcf3 (diff) |
Back out tzset(3) change, it is not effective.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/main.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/mandoc/main.c b/usr.bin/mandoc/main.c index 321d6c52167..119241629f5 100644 --- a/usr.bin/mandoc/main.c +++ b/usr.bin/mandoc/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.264 2024/03/29 01:01:00 millert Exp $ */ +/* $OpenBSD: main.c,v 1.265 2024/03/29 01:16:30 millert Exp $ */ /* * Copyright (c) 2010-2012, 2014-2021 Ingo Schwarze <schwarze@openbsd.org> * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv> @@ -391,9 +391,6 @@ main(int argc, char *argv[]) argv += optind; } - /* Avoid repeated TZ lookups, especially for makewhatis. */ - tzset(); - /* * Quirks for help(1) and man(1), * in particular for a section argument without -s. |