You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2018/11/12 17:14:05 UTC

[10/12] guacamole-server git commit: GUACAMOLE-422: Fix type in strerror()

GUACAMOLE-422: Fix type in strerror()


Project: http://git-wip-us.apache.org/repos/asf/guacamole-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-server/commit/d1b36952
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-server/tree/d1b36952
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-server/diff/d1b36952

Branch: refs/heads/master
Commit: d1b369528288be97f79786bbf517fef185f6d4e0
Parents: f61539c
Author: Nick Couchman <vn...@apache.org>
Authored: Mon Nov 12 11:56:57 2018 -0500
Committer: Nick Couchman <vn...@apache.org>
Committed: Mon Nov 12 11:56:57 2018 -0500

----------------------------------------------------------------------
 src/protocols/rdp/rdp_settings.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-server/blob/d1b36952/src/protocols/rdp/rdp_settings.c
----------------------------------------------------------------------
diff --git a/src/protocols/rdp/rdp_settings.c b/src/protocols/rdp/rdp_settings.c
index 810253d..88d9bc7 100644
--- a/src/protocols/rdp/rdp_settings.c
+++ b/src/protocols/rdp/rdp_settings.c
@@ -1286,7 +1286,7 @@ void guac_rdp_push_settings(guac_client* client,
         if (setenv("TZ", guac_settings->timezone, 1)) {
             guac_client_log(client, GUAC_LOG_WARNING,
                 "Unable to forward timezone: TZ environment variable "
-                "could not be set: %s", sterror(errno));
+                "could not be set: %s", strerror(errno));
         }
     }