diff --git a/src/config_directives.c b/src/config_directives.c index c6b839c2c..af3651813 100644 --- a/src/config_directives.c +++ b/src/config_directives.c @@ -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; }