Displaying 1 result from an estimated 1 matches for "f_index".
Did you mean:
fd_index
2004 Jan 25
2
scan for first existing hard-link file
..._struct **hlink_list;
extern int am_root;
extern int preserve_devices;
@@ -263,7 +264,7 @@ static int keep_backup(char *fname)
}
#endif
if (!kept && preserve_hard_links && file->link_u.links
- && file->F_HEAD != file) {
+ && hlink_list[file->F_INDEX] != file) {
if (verbose > 1)
rprintf(FINFO, "%s is a hard link\n", f_name(file));
}
--- generator.c 22 Jan 2004 04:38:18 -0000 1.72
+++ generator.c 25 Jan 2004 09:56:10 -0000
@@ -43,6 +43,7 @@ extern int protocol_version;
extern int always_checksum;
extern char *compare_dest...