search for: flist_count

Displaying 6 results from an estimated 6 matches for "flist_count".

Did you mean: list_count
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
...AXP */ /* -*- c-file-style: "linux" -*- Weiss 1/1999 @@ -22,7 +23,7 @@ struct file_list *batch_flist; -void create_batch_file_ext() +void create_batch_file_ext(void) { struct tm *timeptr; time_t elapsed_seconds; @@ -103,7 +104,7 @@ if (i == flist_count - 1) { fdb_close = 1; } - write_char_bufs(fptr[i]->sum); + write_char_bufs((char *)fptr[i]->sum); } } @@ -175,7 +176,7 @@ close(fdb); } -struct file_list *create_flist_from_batch() +struct file_list...
2002 Feb 11
0
RSYNC 2.5.2 type mismatches in batch.c
...AXP */ /* -*- c-file-style: "linux" -*- Weiss 1/1999 @@ -22,7 +23,7 @@ struct file_list *batch_flist; -void create_batch_file_ext() +void create_batch_file_ext(void) { struct tm *timeptr; time_t elapsed_seconds; @@ -108,7 +109,7 @@ if (i == flist_count - 1) { fdb_close = 1; } - write_char_bufs(fptr[i]->sum); + write_char_bufs((char *)fptr[i]->sum); } } @@ -184,7 +185,7 @@ close(fdb); } -struct file_list *create_flist_from_batch() +struct file_list...
2002 Feb 07
1
Latest version of the batch mode cleanup patch
...quot;Batch file %s write error: %s\n", - rsync_csums_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } } -void close_batch_csums_file() +void close_batch_csums_file(void) { close(fdb); - } void write_batch_csum_info(int *flist_entry, int flist_count, @@ -405,10 +405,7 @@ /* FIXME: This will break if s->count is ever not exactly an int. */ write_batch_csums_file(flist_entry, sizeof(int)); - if (s) - write_batch_csums_file(&s->count, sizeof(int)); - else - write_batch_csums_file(&int_zero, sizeof (int)); + write_batch_csums...
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.
2004 Apr 21
1
rsync-2.6.1pre-1 hang
..._level=143314120) at flist.c:823 #97 0x0804d5f3 in recv_files (f_in=134793344, flist=0x3, local_name=0x3 <Address 0x3 out of bounds>) at receiver.c:438 #98 0x08050e43 in msleep (t=3) at util.c:1000 #99 0x080514c1 in show_malloc_stats () at main.c:194 #100 0x08062628 in write_batch_flist_info (flist_count=3, files=0x3) at batch.c:43 #101 0x08062d35 in write_batch_csum_info (flist_entry=0x3, s=0x3) at batch.c:202 #102 0x0805d2be in read_longint (f=873) at io.c:710 #103 0x08062f73 in read_batch_csum_info (flist_entry=0, s=0x0, checksums_match=0x1) at batch.c:256 #104 0x0805219b in do_server_recv (f_in...
2004 Jul 12
2
[PATCH] Batch-mode rewrite
...============================================ RCS file: /cvsroot/rsync/batch.c,v retrieving revision 1.32 diff -c -b -d -r1.32 batch.c *** batch.c 15 May 2004 19:31:10 -0000 1.32 --- batch.c 12 Jul 2004 00:37:45 -0000 *************** *** 25,30 **** --- 25,31 ---- void write_batch_flist_info(int flist_count, struct file_struct **files) { + return; char filename[MAXPATHLEN]; int i, f, save_pv; int64 save_written; *************** *** 180,185 **** --- 181,187 ---- **/ void write_batch_csum_info(int *flist_entry, struct sum_struct *s) { + return; size_t i; int int_count; char...