Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/199#discussion_r232133763
--- Diff: src/protocols/ssh/ssh.c ---
@@ -320,6 +320,17 @@ void* ssh_client_thread(void* data) {
return NULL;
}
+ /* Forward specified locale */
+ if (settings->locale != NULL) {
+ if (libssh2_channel_setenv(ssh_client->term_channel, "LANG",
+ settings->locale)) {
+ guac_client_abort(client, GUAC_PROTOCOL_STATUS_UPSTREAM_ERROR,
--- End diff --
Good point. I'll switch this to a warning.
---