search for: no_filters

Displaying 3 results from an estimated 3 matches for "no_filters".

Did you mean: n_filters
2005 Jan 31
1
[patch] add "--ignore" option
...ther SERVER_FILTERS or ALL_FILTERS. */ -static int is_excluded(char *fname, int is_dir, int filter_level) +static enum matchtype is_excluded(char *fname, int is_dir, int filter_level) { + enum matchtype r; #if 0 /* This currently never happens, so avoid a useless compare. */ if (filter_level == NO_FILTERS) return 0; @@ -241,14 +242,19 @@ } } if (server_filter_list.head - && check_filter(&server_filter_list, fname, is_dir) < 0) - return 1; - if (filter_level != ALL_FILTERS) - return 0; + && (r = check_filter(&server_filter_list, fname, is_dir)) != M_NOMA...
2009 Feb 07
0
wice grid
I am trying to use wice grid plugin and I have run into problem. The problem is when I have nested paths as follows: Hardware :has_many installed_softwares Software :has_many installed_softwares installed_softwares belongs_to both when I view individual hardware, I have a link "Installed Software" -> hardware_installed_softwares when I use wicegrid to view installed software and
2007 Aug 20
5
DO NOT REPLY [Bug 4899] New: When a mounted dir cannot be visited, rsync will halt there and the shell is halted, even "ctrl -c" can't quit it.
...STRUCT_STAT *stp, unsigned short flags, int filter_level) { ... memset(sum, 0, SUM_LENGTH); /* In case a mounted dir crashed, than stat will hang there even the dir has been filtered */ if (filter_level != NO_FILTERS && is_excluded(thisname, 1, filter_level)) { rprintf(FINFO, "Excluding %s\n", thisname); return NULL; } else if (stp && S_ISDIR(stp->st_mode)) { st = *stp; /* Needed for "symlink/." with --rel...