Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/169#discussion_r232737390
--- Diff: src/protocols/rdp/rdp_settings.c ---
@@ -1264,6 +1281,14 @@ void guac_rdp_push_settings(guac_rdp_settings*
guac_settings, freerdp* rdp) {
#endif
#endif
+ /* Timezone redirection */
+ if (guac_settings->timezone) {
+ if(setenv("TZ", guac_settings->timezone, 1)) {
+ guac_client_log(client, GUAC_LOG_WARNING,
+ "Unable to set TZ variable, error %i", errno);
--- End diff --
Used your suggestion.
---