Repository: incubator-guacamole-server Updated Branches: refs/heads/master 37fe3548d -> d3fa5e7fb
GUACAMOLE-268: Use 64-bit unsigned integers to represent file size internally (identical to RDPDR). Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/22887480 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/22887480 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/22887480 Branch: refs/heads/master Commit: 228874804efcdefc78ae109a4f6ad7cdb4985283 Parents: 37fe354 Author: Michael Jumper <[email protected]> Authored: Mon Apr 17 11:52:07 2017 -0700 Committer: Michael Jumper <[email protected]> Committed: Mon Apr 17 11:52:07 2017 -0700 ---------------------------------------------------------------------- src/protocols/rdp/rdp_fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/22887480/src/protocols/rdp/rdp_fs.h ---------------------------------------------------------------------- diff --git a/src/protocols/rdp/rdp_fs.h b/src/protocols/rdp/rdp_fs.h index abdda10..9168efb 100644 --- a/src/protocols/rdp/rdp_fs.h +++ b/src/protocols/rdp/rdp_fs.h @@ -229,7 +229,7 @@ typedef struct guac_rdp_fs_file { /** * The size of this file, in bytes. */ - int size; + uint64_t size; /** * The time this file was created, as a Windows timestamp.
