Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/169#discussion_r232504348
--- Diff: src/protocols/rdp/rdp_settings.c ---
@@ -1265,6 +1277,9 @@ void guac_rdp_push_settings(guac_rdp_settings*
guac_settings, freerdp* rdp) {
#endif
/* Device redirection */
+ if (guac_settings->timezone)
+ setenv("TZ", guac_settings->timezone, 1);
--- End diff --
It appears that, in order to do this, I would need to pass the entire
`client` object through to this `guac_rdp_push_settings()` function?
---