From: David Dykstra Date: Wed, 27 Feb 2002 22:49:57 +0000 (+0000) Subject: I had accidentally deleted the case for --include-from when I added X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/93695764591e638d19e9ba858aceaa90374e1d33 I had accidentally deleted the case for --include-from when I added the --no-blocking-io and --no-whole-file options. This adds it back in. --- diff --git a/options.c b/options.c index 6a73e3c6..38bc63ac 100644 --- a/options.c +++ b/options.c @@ -459,6 +459,10 @@ int parse_arguments(int *argc, const char ***argv, int frommain) add_exclude_file(poptGetOptArg(pc), 1, 0); break; + case OPT_INCLUDE_FROM: + add_exclude_file(poptGetOptArg(pc), 1, 1); + break; + case OPT_NO_WHOLE_FILE: whole_file = 0; break;