Displaying 1 result from an estimated 1 matches for "links_depth".
2004 Jan 24
2
[PATCH] --links-depth for rsync
...==========
RCS file: /cvsroot/rsync/flist.c,v
retrieving revision 1.169
diff -u -r1.169 flist.c
--- flist.c	22 Jan 2004 18:39:32 -0000	1.169
+++ flist.c	24 Jan 2004 20:30:08 -0000
@@ -50,6 +50,7 @@
 extern int one_file_system;
 extern int make_backups;
 extern int preserve_links;
+extern int follow_links_depth;
 extern int preserve_hard_links;
 extern int preserve_perms;
 extern int preserve_devices;
@@ -725,6 +726,65 @@
 /* IRIX cc cares that the operands to the ternary have the same type. */
 #define MALLOC(ap, i)	(ap ? (void*) string_area_malloc(ap, i) : malloc(i))
 
+void make_file_stat(struct file_s...