fix: Use timezone from time formatting, not a (wrong) hardcoded string. (#857)

Fixes #838.
diff --git a/src/iperf_api.c b/src/iperf_api.c
index 999c8e1..4c1d927 100755
--- a/src/iperf_api.c
+++ b/src/iperf_api.c
@@ -662,7 +662,7 @@
 iperf_on_connect(struct iperf_test *test)
 {
     time_t now_secs;
-    const char* rfc1123_fmt = "%a, %d %b %Y %H:%M:%S GMT";
+    const char* rfc1123_fmt = "%a, %d %b %Y %H:%M:%S %Z";
     char now_str[100];
     char ipr[INET6_ADDRSTRLEN];
     int port;