Displaying 1 result from an estimated 1 matches for "filesstem".
Did you mean:
filesystem
2004 Feb 02
1
[PATCH] --one-file-system and automounter
...--------------------------
-------------- next part --------------
--- rsync-2.6.0/flist.c.orig 2003-12-15 09:10:31.000000000 +0100
+++ rsync-2.6.0/flist.c 2004-02-02 10:35:06.000000000 +0100
@@ -618,32 +618,6 @@ static void receive_file_entry(struct fi
}
-/* determine if a file in a different filesstem should be skipped
- when one_file_system is set. We bascally only want to include
- the mount points - but they can be hard to find! */
-static int skip_filesystem(char *fname, STRUCT_STAT * st)
-{
- STRUCT_STAT st2;
- char *p = strrchr(fname, '/');
-
- /* skip all but directories */
-...