diff options
| author | Mark Riordan <mriordan@ipswitch.com> | 2011-04-07 16:40:39 -0500 |
|---|---|---|
| committer | Andreas Schneider <asn@cryptomilk.org> | 2011-04-15 16:18:26 +0200 |
| commit | 96d5f13813367a632020846b1f0f3fb1456e03a1 (patch) | |
| tree | 5af3e961f09f7a6fd05d84cc92f5414a9fc1a337 /include/libssh/scp.h | |
| parent | 3a77f2aebe7161125f5bad10a7c6a9a71ff471a5 (diff) | |
| download | libssh-96d5f13813367a632020846b1f0f3fb1456e03a1.tar.gz libssh-96d5f13813367a632020846b1f0f3fb1456e03a1.tar.xz libssh-96d5f13813367a632020846b1f0f3fb1456e03a1.zip | |
scp: Support huge files by changing size to 64-bit type.
Signed-off-by: Mark Riordan <mriordan@ipswitch.com>
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include/libssh/scp.h')
| -rw-r--r-- | include/libssh/scp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libssh/scp.h b/include/libssh/scp.h index 346c98b6..d4fa42be 100644 --- a/include/libssh/scp.h +++ b/include/libssh/scp.h @@ -40,8 +40,8 @@ struct ssh_scp_struct { ssh_channel channel; char *location; enum ssh_scp_states state; - size_t filelen; - size_t processed; + uint64_t filelen; + uint64_t processed; enum ssh_scp_request_types request_type; char *request_name; char *warning; |
