From: Zbigniew Jędrzejewski-Szmek Date: Fri, 22 Nov 2019 09:53:48 +0000 (+0100) Subject: shared/conf-parser: document what the flags do X-Git-Tag: v245-rc1~312^2~3 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fsystemd.git;a=commitdiff_plain;h=94a404cb0357fd30bee34ee94cbb481e97098ce1 shared/conf-parser: document what the flags do --- diff --git a/src/shared/conf-parser.h b/src/shared/conf-parser.h index 8a6f877bba6..9ec77778670 100644 --- a/src/shared/conf-parser.h +++ b/src/shared/conf-parser.h @@ -14,9 +14,9 @@ /* An abstract parser for simple, line based, shallow configuration files consisting of variable assignments only. */ typedef enum ConfigParseFlags { - CONFIG_PARSE_RELAXED = 1 << 0, - CONFIG_PARSE_ALLOW_INCLUDE = 1 << 1, - CONFIG_PARSE_WARN = 1 << 2, + CONFIG_PARSE_RELAXED = 1 << 0, /* Do not warn about unknown non-extension fields */ + CONFIG_PARSE_ALLOW_INCLUDE = 1 << 1, /* Allow the deprecated .include stanza */ + CONFIG_PARSE_WARN = 1 << 2, /* Emit non-debug messages */ } ConfigParseFlags; /* Argument list for parsers of specific configuration settings. */