diff options
Diffstat (limited to '')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c index 2a5ea9e5f..2a0ab2077 100644 --- a/src/conf.c +++ b/src/conf.c @@ -372,7 +372,7 @@ int getBoolConfigParam(char *name) if (strcmp("yes", param->value) == 0) return 1; else if (strcmp("no", param->value) == 0) return 0; - return -1; + return -2; } BlockParam *getBlockParam(ConfigParam * param, char *name) |