X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/9f7b8c3b8f96c8f273af11258b92e0b03adc602a..1f9ae80a3e0e4efd36264f3d484a366ac8cb90a2:/flist.c diff --git a/flist.c b/flist.c index 0aac6b17..8505b9ba 100644 --- a/flist.c +++ b/flist.c @@ -36,6 +36,7 @@ extern int am_server; extern int always_checksum; extern int module_id; extern int ignore_errors; +extern int numeric_ids; extern int cvs_exclude; @@ -78,10 +79,10 @@ 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_struct is without trailing padding */ + min_file_struct_len = ((char*)&f.flags - (char*)&f) + sizeof f.flags; }