search for: hold_int

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

2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch? Thanks for the reminder. I've just committed Jos's rsync+ patch onto the "branch_mbp_rsyncplus_merge" branch. If it works OK and nobody screams I will move it across onto the main tree tomorrow or Wednesday. I see the patch doesn't add documentation about the new options to the man page, so we should fix that in the future.
2002 Aug 05
5
[patch] read-devices
...n n; } -/* non-compressing send token */ -static void simple_send_token(int f,int token, +/* non-compressing send token. returns size of data sent. */ +static int simple_send_token(int f,int token, struct map_struct *buf,OFF_T offset,int n) { extern int write_batch; /* dw */ int hold_int; /* dw */ + int l = 0; if (n > 0) { - int l = 0; while (l < n) { int n1 = MIN(CHUNK_SIZE,n-l); - write_int(f,n1); - write_buf(f,map_ptr(buf,offset+l,n1),n1); + rprintf(FINFO, "#ET#>simple_send_token will do write_buf(f,map_ptr(buf,%.0f+l,%.0f),%.0f)\n",(d...