search for: put_total_size

Displaying 2 results from an estimated 2 matches for "put_total_size".

Did you mean: get_total_size
2001 Nov 05
4
smdb warp-around after 4 GB
...be large-file-proof, e.g. capable of handling files larger than 4 GB? * On Solaris 8? * On Tru64 Unix? * On RedHat 7.1 / Kernel 2.4.2 / ext2? o Is smbclient supposed to be large-file-proof? (I see a few minor problems in the source; the variables get_total_size, put_total_size, nread in client/client.c should be declared as off_t. o Am I missing something really obvious, such as a smb.conf file option? Regards, - Andi Karrer
2002 Dec 20
1
smbclient and large file support
...xt part -------------- --- samba-2.2.7a/source/client/client.c Wed Dec 4 09:16:34 2002 +++ samba-2.2.7a-fixed/source/client/client.c Thu Dec 19 15:41:51 2002 @@ -92,9 +92,9 @@ /* timing globals */ off_t get_total_size = 0; -int get_total_time_ms = 0; +unsigned int get_total_time_ms = 0; off_t put_total_size = 0; -int put_total_time_ms = 0; +unsigned int put_total_time_ms = 0; /* totals globals */ static double dir_total; --- samba-2.2.7a/source/client/clitar.c Tue Apr 30 06:26:18 2002 +++ samba-2.2.7a-fixed/source/client/clitar.c Thu Dec 19 15:50:20 2002 @@ -45,10 +45,10 @@ struct file_info_str...