Displaying 1 result from an estimated 1 matches for "send_batch_file_list".
2003 Jul 24
0
(no subject)
...atch=test dst2::dst
Oli Dewdney
diff -E -B -c -r rsync-2.5.6/flist.c rsync-2.5.6-remotebatch/flist.c
*** rsync-2.5.6/flist.c Sat Jan 18 18:00:23 2003
--- rsync-2.5.6-remotebatch/flist.c Wed Jul 23 11:27:45 2003
***************
*** 1038,1043 ****
--- 1038,1058 ----
return flist;
}
+ void send_batch_file_list( int f, struct file_list *flist )
+ {
+ int n;
+ for (n = 0; n < flist->count; n++ ) {
+ send_file_entry(flist->files[n], f, 0);
+ }
+ send_file_entry(NULL, f, 0);
+ if (f != -1 && remote_version >= 15) {
+ send_uid_list(f);
+ }
+ if (f != -1 && remote_version...