summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.c b/config.c
index 559fc55..dfbba40 100644
--- a/config.c
+++ b/config.c
@@ -62,7 +62,7 @@ config *parse_config(const char *filename) {
/* Did we fail to parse the config file? */
if (error = parse_key_value_file(cfg, &type_error, config_keywords, buf, "=", NULL)) {
- if (type_error || (error >= 3 && error != 6)) {
+ if (type_error || (error >= 3 && error > 7)) {
cleanup_config(cfg);
free(buf);
return NULL;