diff options
Diffstat (limited to '')
-rw-r--r-- | src/shared/conf-parser.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/shared/conf-parser.h b/src/shared/conf-parser.h index b73039cc5c..94f81a3bd6 100644 --- a/src/shared/conf-parser.h +++ b/src/shared/conf-parser.h @@ -320,7 +320,7 @@ typedef enum ConfigParseStringFlags { } \ \ *i = r; \ - return 0; \ + return 1; \ } #define DEFINE_CONFIG_PARSE_PTR(function, parser, type, msg) \ @@ -337,7 +337,7 @@ typedef enum ConfigParseStringFlags { log_syntax(unit, LOG_WARNING, filename, line, r, \ msg ", ignoring: %s", rvalue); \ \ - return 0; \ + return 1; \ } #define DEFINE_CONFIG_PARSE_ENUM_FULL(function, from_string, type, msg) \ @@ -357,7 +357,7 @@ typedef enum ConfigParseStringFlags { } \ \ *i = x; \ - return 0; \ + return 1; \ } #define DEFINE_CONFIG_PARSE_ENUM(function, name, type, msg) \ @@ -374,7 +374,7 @@ typedef enum ConfigParseStringFlags { \ if (isempty(rvalue)) { \ *i = default_value; \ - return 0; \ + return 1; \ } \ \ x = name##_from_string(rvalue); \ @@ -385,7 +385,7 @@ typedef enum ConfigParseStringFlags { } \ \ *i = x; \ - return 0; \ + return 1; \ } #define DEFINE_CONFIG_PARSE_ENUMV(function, name, type, invalid, msg) \ @@ -448,7 +448,8 @@ typedef enum ConfigParseStringFlags { *(xs + i) = invalid; \ } \ \ - return free_and_replace(*enums, xs); \ + free_and_replace(*enums, xs); \ + return 1; \ } int config_parse_unsigned_bounded( |