From 228874804efcdefc78ae109a4f6ad7cdb4985283 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 17 Apr 2017 11:52:07 -0700 Subject: [PATCH] GUACAMOLE-268: Use 64-bit unsigned integers to represent file size internally (identical to RDPDR). --- src/protocols/rdp/rdp_fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocols/rdp/rdp_fs.h b/src/protocols/rdp/rdp_fs.h index abdda105..9168efb1 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.