I had accidentally deleted the case for --include-from when I added
authorDavid Dykstra <dwd@samba.org>
Wed, 27 Feb 2002 22:49:57 +0000 (22:49 +0000)
committerDavid Dykstra <dwd@samba.org>
Wed, 27 Feb 2002 22:49:57 +0000 (22:49 +0000)
the --no-blocking-io and --no-whole-file options.  This adds it back in.

options.c

index 6a73e3c..38bc63a 100644 (file)
--- 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;
 
                        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;
                case OPT_NO_WHOLE_FILE:
                        whole_file = 0;
                        break;