aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2009-05-23 08:01:43 -0700
committerWayne Davison <wayned@samba.org>2009-05-23 09:07:35 -0700
commitb32d425451798d514b958a978f5f78903ed3327b (patch)
treeee5f7ee409f4462d89fcedeabaf8d9317835fa41 /options.c
parent134f97c9cc42560b888c4bbdaeab4cc338978832 (diff)
downloadandroid_external_rsync-b32d425451798d514b958a978f5f78903ed3327b.tar.gz
android_external_rsync-b32d425451798d514b958a978f5f78903ed3327b.tar.bz2
android_external_rsync-b32d425451798d514b958a978f5f78903ed3327b.zip
Change filter MATCHFLGs to FILTRULEs.
Diffstat (limited to 'options.c')
-rw-r--r--options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.c b/options.c
index 817e4305..49af4b4e 100644
--- a/options.c
+++ b/options.c
@@ -1409,7 +1409,7 @@ int parse_arguments(int *argc_p, const char ***argv_p)
case OPT_INCLUDE:
parse_rule(&filter_list, poptGetOptArg(pc),
- MATCHFLG_INCLUDE, XFLG_OLD_PREFIXES);
+ FILTRULE_INCLUDE, XFLG_OLD_PREFIXES);
break;
case OPT_EXCLUDE_FROM:
@@ -1432,7 +1432,7 @@ int parse_arguments(int *argc_p, const char ***argv_p)
goto options_rejected;
}
parse_filter_file(&filter_list, arg,
- opt == OPT_INCLUDE_FROM ? MATCHFLG_INCLUDE : 0,
+ opt == OPT_INCLUDE_FROM ? FILTRULE_INCLUDE : 0,
XFLG_FATAL_ERRORS | XFLG_OLD_PREFIXES);
break;