Commit 19c14f98 authored by David Dykstra's avatar David Dykstra

Changed the optimized include mode (which kicks in when there are a series

of non-wildcard includes followed by an exclude of *) so that it will silently
ignore included files that don't exist rather than saying "No such file or
directory".  This is more like the behavior of the non-optimized include mode.
parent 122f19a6
......@@ -60,7 +60,10 @@ int send_included_file_names(int f,struct file_list *flist)
/* skip the allowed beginning slashes */
p++;
}
send_file_name(f,flist,p,0,0);
/* silently skip files that don't exist to
be more like non-optimized case */
if (access(p,0) == 0)
send_file_name(f,flist,p,0,0);
}
exclude_list = ex_list;
......
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