From 9262863caedac6fa1691371da0be60c9a4c6a5a3 Mon Sep 17 00:00:00 2001
From: Pouria Mousavizadeh Tehrani <p.mousavizadeh@protonmail.com>
Date: Wed, 19 Apr 2023 00:21:08 +0330
Subject: [PATCH] tzsetwall() is deprecated, use tzset() instead.

/usr/ports/net/iodine/work/iodine-0.8.0/src/iodined.c:2757: warning: warning: tzsetwall() is deprecated, use tzset() instead.
---
 src/iodined.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/iodined.c b/src/iodined.c
index f955516..f2d1dc5 100644
--- a/src/iodined.c
+++ b/src/iodined.c
@@ -2754,7 +2754,7 @@ main(int argc, char **argv)
 		do_pidfile(pidfile);
 
 #ifdef FREEBSD
-	tzsetwall();
+	tzset();
 #endif
 #ifndef WINDOWS32
 	openlog(__progname, LOG_NDELAY, LOG_DAEMON);