search for: matchflg_include

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

2005 Jan 31
1
[patch] add "--ignore" option
...0050125-1221GMT.orig/exclude.c Tue Jan 25 12:21:14 2005 +++ ./exclude.c Thu Jan 27 16:52:33 2005 @@ -117,7 +117,8 @@ rprintf(FINFO, "[%s] make_filter(%.*s, %s%s)\n", who_am_i(), (int)pat_len, pat, mflags & MATCHFLG_PERDIR_MERGE ? "per-dir-merge" - : mflags & MATCHFLG_INCLUDE ? "include" : "exclude", + : mflags & MATCHFLG_INCLUDE ? "include" + : mflags & MATCHFLG_IGNORE ? "ignore" : "exclude", listp->debug_type); } @@ -563,9 +564,10 @@ * case we add it back in here. */ if (verbose >= 2) {...
2005 Sep 16
1
Bug#314473: rsync still fails badly with an "!" in .cvsignore
...(*s == '!' && mflags & MATCHFLG_CVS_IGNORE) { new_mflags |= MATCHFLG_CLEAR_LIST; /* Tentative! */ + s++; + } } else if (xflags & XFLG_OLD_PREFIXES) { if (*s == '-' && s[1] == ' ') { new_mflags &= ~MATCHFLG_INCLUDE; @@ -674,8 +676,10 @@ } else if (*s == '+' && s[1] == ' ') { new_mflags |= MATCHFLG_INCLUDE; s += 2; - } else if (*s == '!') + } else if (*s == '!') { new_mflags |= MATCHFLG_CLEAR_LIST; /* Tentative! */ + s++; +...