search for: send_dirs

Displaying 2 results from an estimated 2 matches for "send_dirs".

2001 Nov 20
2
patch to enable faster mirroring of large filesystems
...If you would like some elaboration on how this stuff really works, please let me know. Cheers, Andy -------------- next part -------------- --- flist.c.orig Tue Sep 5 22:46:43 2000 +++ flist.c Fri Nov 9 12:01:56 2001 @@ -30,6 +30,7 @@ extern int cvs_exclude; extern int recurse; +extern int send_dirs; extern int one_file_system; extern int make_backups; @@ -501,8 +502,8 @@ /* we use noexcludes from backup.c */ if (noexcludes) goto skip_excludes; - if (S_ISDIR(st.st_mode) && !recurse) { - rprintf(FINFO,"skipping directory %s\n",fname); + if (S_ISDIR(st.st_mode) &...
2003 Jan 14
4
specifying a list of files to transfer
...properly. I think that should cover everything, let me know if there are any questions. Cheers, Andy -------------- next part -------------- --- flist.c.orig Thu Mar 14 16:20:20 2002 +++ flist.c Fri Jan 10 11:10:58 2003 @@ -41,6 +41,7 @@ extern int cvs_exclude; extern int recurse; +extern int send_dirs; extern int one_file_system; extern int make_backups; @@ -662,8 +663,8 @@ if (noexcludes) goto skip_excludes; - if (S_ISDIR(st.st_mode) && !recurse) { - rprintf(FINFO, "skipping directory %s\n", fname); + if (S_ISDIR(st.st_mode) && !recurse && !send_dir...