Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/169#discussion_r232525849
--- 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)) {
--- End diff --
`if` is not a function. ;)---
