diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-11-09 16:57:45 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-11-09 16:57:45 +0000 |
commit | dc5297f413c40f04e1fdae719e29d949e3301091 (patch) | |
tree | f806bd40f94aa39af5f2bfb9eafda514b353a90c /source3/client | |
parent | e21ff2d500ea4709b641834a88d3dff9d6bf039b (diff) | |
download | samba-dc5297f413c40f04e1fdae719e29d949e3301091.tar.gz samba-dc5297f413c40f04e1fdae719e29d949e3301091.tar.bz2 samba-dc5297f413c40f04e1fdae719e29d949e3301091.zip |
Sync with HEAD
(This used to be commit 1a25dc776ddc36de9a214e023becff1ceb10290c)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 0b10a9fa0a..96b9837fef 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -94,10 +94,10 @@ static pstring fileselection = ""; extern file_info def_finfo; /* timing globals */ -int get_total_size = 0; -int get_total_time_ms = 0; -static int put_total_size = 0; -static int put_total_time_ms = 0; +SMB_BIG_UINT get_total_size = 0; +unsigned int get_total_time_ms = 0; +static SMB_BIG_UINT put_total_size = 0; +static unsigned int put_total_time_ms = 0; /* totals globals */ static double dir_total; |