From e5aa2f71b74b69972a608cc00c9a59062529dd7d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 30 Sep 2015 20:19:57 +0200 Subject: util: there cannot be trailing garbage when parsing cpu sets extract_first() already skips trailing whitespace, hence no reason to explicitly check for it. --- src/basic/util.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/basic/util.c b/src/basic/util.c index a2a75bdd7f..cc50c9aa7d 100644 --- a/src/basic/util.c +++ b/src/basic/util.c @@ -2622,14 +2622,13 @@ int parse_cpu_set_and_warn( CPU_SET_S(cpu, CPU_ALLOC_SIZE(ncpus), c); } - if (!isempty(rvalue)) - log_syntax(unit, LOG_ERR, filename, line, 0, "Trailing garbage, ignoring."); /* On success, sets *cpu_set and returns ncpus for the system. */ if (c) { *cpu_set = c; c = NULL; } + return (int) ncpus; } -- cgit v1.2.3-54-g00ecf