From 4d7213b2747ddd87002f970ccc60b1a9ab637136 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 3 Mar 2014 21:23:12 +0100 Subject: core: move ShowStatus type into the core Let's make the scope of the show-status stuff a bit smaller, and make it private to the core, rather than shared API in shared/. --- src/shared/conf-parser.c | 29 ----------------------------- 1 file changed, 29 deletions(-) (limited to 'src/shared/conf-parser.c') diff --git a/src/shared/conf-parser.c b/src/shared/conf-parser.c index f39a4cd1fd..accbdac6b1 100644 --- a/src/shared/conf-parser.c +++ b/src/shared/conf-parser.c @@ -565,35 +565,6 @@ int config_parse_bool(const char* unit, return 0; } -int config_parse_show_status(const char* unit, - const char *filename, - unsigned line, - const char *section, - unsigned section_line, - const char *lvalue, - int ltype, - const char *rvalue, - void *data, - void *userdata) { - - int k; - ShowStatus *b = data; - - assert(filename); - assert(lvalue); - assert(rvalue); - assert(data); - - k = parse_show_status(rvalue, b); - if (k < 0) { - log_syntax(unit, LOG_ERR, filename, line, -k, - "Failed to parse show status setting, ignoring: %s", rvalue); - return 0; - } - - return 0; -} - int config_parse_string(const char *unit, const char *filename, unsigned line, -- cgit v1.2.3-54-g00ecf