Displaying 3 results from an estimated 3 matches for "output_flist".
2008 Jun 04
0
3.0.3pre2 compile warnings under cygwin
Under cygwin 1.5.25 we get the following compile warnings
flist.c: In function `output_flist':
flist.c:2648: warning: unsigned int format, uint32_t arg (arg 4)
flist.c:2648: warning: unsigned int format, uint32_t arg (arg 4)
flist.c:2655: warning: unsigned int format, uint32_t arg (arg 5)
flist.c:2655: warning: unsigned int format, uint32_t arg (arg 5)
flist.c:2659: warning: int format...
2004 May 29
1
[patch] Filename conversion
...flist = flist_new(f == -1 ? WITHOUT_HLINK : WITH_HLINK,
"send_file_list");
@@ -1217,6 +1227,9 @@ struct file_list *send_file_list(int f,
write_batch_flist_info(flist->count, flist->files);
}
+ if (!am_server)
+ cleanup_fname_convert();
+
if (verbose > 3)
output_flist(flist);
@@ -1239,6 +1252,9 @@ struct file_list *recv_file_list(int f)
start_read = stats.total_read;
+ if (!am_server)
+ init_fname_convert();
+
flist = flist_new(WITH_HLINK, "recv_file_list");
flist->count = 0;
@@ -1293,6 +1309,9 @@ struct file_list *recv_file_list(int...
2004 Feb 06
4
memory reduction
...f -rupNP --exclude-from cvs/.ignore cvs/flist.c pool2/flist.c
--- cvs/flist.c Wed Feb 4 17:39:32 2004
+++ pool2/flist.c Thu Feb 5 18:41:21 2004
@@ -76,13 +76,12 @@ static unsigned int min_file_struct_len;
static void clean_flist(struct file_list *flist, int strip_root, int no_dups);
static void output_flist(struct file_list *flist);
-
void init_flist(void)
{
- struct file_struct f;
+ struct file_struct f;
- /* Figure out how big the file_struct is without trailing padding */
- min_file_struct_len = ((char*)&f.flags - (char*)&f) + sizeof f.flags;
+ /* Figure out how big the file_...