search for: lp_ignore_nonreadable

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

2007 Oct 10
0
patch for rsync: provides "nice = N" option
...fault.use_chroot, NULL,0}, @@ -411,6 +414,7 @@ FN_LOCAL_INTEGER(lp_max_connections, max_connections) FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity) FN_LOCAL_INTEGER(lp_timeout, timeout) +FN_LOCAL_INTEGER(lp_nice, niceval) FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors) FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable) --- proto.h.orig 2007-08-19 07:41:19.000000000 +0000 +++ proto.h 2007-08-19 07:42:12.000000000 +0000 @@ -173,6 +173,7 @@ int lp_max_connections(int ); int lp_max_verbosity(int ); int lp_timeout(int ); +int lp_nice(int ); BOOL lp_ignore_errors(int ); BOOL lp_ignore_nonreada...
2005 Jan 31
1
[patch] add "--ignore" option
....st_mode)) flags |= FLAG_MOUNT_POINT; - if (is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level)) - return NULL; + { + enum matchtype m = is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level); + if ((m == M_EXCLUDE) || (m == M_IGNORE)) { + return NULL; + } + } if (lp_ignore_nonreadable(module_id)) { #if SUPPORT_LINKS @@ -981,7 +992,8 @@ /* f is set to -1 when calculating deletion file list */ file = make_file(fname, flist, - f == -1 && delete_excluded? SERVER_FILTERS : ALL_FILTERS); + f == -1 && delete_excluded? SERVER_FILTERS : ALL_FILTERS); + if...