Merge pull request #4495 from kgilmer/config-directives-no-file-no-error
Lower severity of missing include path specified from error to info.
This commit is contained in:
commit
3bdea50548
@ -29,8 +29,7 @@ CFGFUN(include, const char *pattern) {
|
||||
for (size_t i = 0; i < p.we_wordc; i++) {
|
||||
char resolved_path[PATH_MAX] = {'\0'};
|
||||
if (realpath(w[i], resolved_path) == NULL) {
|
||||
ELOG("realpath(%s): %s\n", w[i], strerror(errno));
|
||||
result->has_errors = true;
|
||||
LOG("Skipping %s: %s\n", w[i], strerror(errno));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user