diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-01-04 20:40:04 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-01-04 20:40:04 +0100 |
commit | e6960940b6dc5ab81eb2fca4061c333e1795f38d (patch) | |
tree | 08ec0a8cc0bcc64f4a053d24a101101d71c96033 /src/conf-parser.h | |
parent | 3606df64abfa79e8fad7bd75c8634c116a6f1c96 (diff) |
journald: parse configuration file
Diffstat (limited to 'src/conf-parser.h')
-rw-r--r-- | src/conf-parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf-parser.h b/src/conf-parser.h index cbb4235d69..e970ee2834 100644 --- a/src/conf-parser.h +++ b/src/conf-parser.h @@ -101,6 +101,7 @@ int config_parse_strv(const char *filename, unsigned line, const char *section, int config_parse_path_strv(const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata); int config_parse_usec(const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata); int config_parse_mode(const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata); +int config_parse_bytes(const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata); #define DEFINE_CONFIG_PARSE_ENUM(function,name,type,msg) \ int function( \ |