summaryrefslogtreecommitdiff
path: root/src/conf-parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf-parser.h')
-rw-r--r--src/conf-parser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/conf-parser.h b/src/conf-parser.h
index 2797076572..43469a3f87 100644
--- a/src/conf-parser.h
+++ b/src/conf-parser.h
@@ -71,8 +71,8 @@ int config_parse_path_strv(const char *filename, unsigned line, const char *sect
assert(data); \
\
if ((x = name##_from_string(rvalue)) < 0) { \
- log_error("[%s:%u] " msg ": %s", filename, line, rvalue); \
- return -EBADMSG; \
+ log_error("[%s:%u] " msg ", ignoring: %s", filename, line, rvalue); \
+ return 0; \
} \
\
*i = x; \
@@ -80,5 +80,4 @@ int config_parse_path_strv(const char *filename, unsigned line, const char *sect
return 0; \
}
-
#endif