Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/169#discussion_r232504354
--- Diff: src/protocols/ssh/ssh.c ---
@@ -256,6 +256,10 @@ void* ssh_client_thread(void* data) {
return NULL;
}
+ /* Set the client timezone */
+ if (settings->timezone != NULL)
+ libssh2_channel_setenv(ssh_client->term_channel, "TZ",
settings->timezone);
--- End diff --
Done.---
