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>
This commit is contained in:
Mark Riordan
2011-04-07 16:40:39 -05:00
committed by Andreas Schneider
parent 3a77f2aebe
commit 96d5f13813
3 changed files with 32 additions and 10 deletions

View File

@@ -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;