summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/dlt_daemon_client.c')
-rw-r--r--src/daemon/dlt_daemon_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/dlt_daemon_client.c b/src/daemon/dlt_daemon_client.c
index e6135e3..e1cf841 100644
--- a/src/daemon/dlt_daemon_client.c
+++ b/src/daemon/dlt_daemon_client.c
@@ -1183,7 +1183,7 @@ int dlt_daemon_control_message_timezone(int sock, DltDaemon *daemon, DltDaemonLo
resp->status = DLT_SERVICE_RESPONSE_OK;
time_t t = time(NULL);
- struct tm lt = {0};
+ struct tm lt;
localtime_r(&t, &lt);
#if !defined(__CYGWIN__)
resp->timezone = (int32_t) lt.tm_gmtoff;