Commit 93695764 authored by David Dykstra's avatar David Dykstra

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.
parent 8a405c6c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment