Displaying 2 results from an estimated 2 matches for "first_flist".
2008 Mar 20
2
DO NOT REPLY [Bug 5343] New: rsync does nothing after first time
https://bugzilla.samba.org/show_bug.cgi?id=5343
Summary: rsync does nothing after first time
Product: rsync
Version: 3.0.0
Platform: IA64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: rolmol@broadpark.no
2010 Jul 09
8
DO NOT REPLY [Bug 7565] New: --check-point=<TIME> +options.c.patch +generator.c.patch
...6:27.000000000 +0200
--- work/rsync-3.0.7/generator.c 2010-07-09 15:36:01.000000000 +0300
***************
*** 96,101 ****
--- 96,102 ----
extern char *backup_dir;
extern char *backup_suffix;
extern int backup_suffix_len;
+ extern long check_point;
extern struct file_list *cur_flist, *first_flist, *dir_flist;
extern struct filter_list_struct daemon_filter_list;
***************
*** 132,138 ****
};
enum delret {
! DR_SUCCESS = 0, DR_FAILURE, DR_AT_LIMIT, DR_NOT_EMPTY
};
/* Forward declarations. */
--- 133,139 ----
};
enum delret {
! DR_SUCCESS = 0, DR_FAILURE, DR_AT_...