From: Zbigniew Jędrzejewski-Szmek Date: Thu, 16 Apr 2015 12:10:33 +0000 (-0400) Subject: core: fix spurious warning about cpuacct-usage-base deserialization X-Git-Tag: v220~412 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f908397544811f60f33aab4ab277041c21aa089;p=thirdparty%2Fsystemd.git core: fix spurious warning about cpuacct-usage-base deserialization The key was parsed properly, but the warning was still generated. --- diff --git a/src/core/unit.c b/src/core/unit.c index 3aa1bf25f73..494dee4156a 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2776,6 +2776,7 @@ int unit_deserialize(Unit *u, FILE *f, FDSet *fds) { if (r < 0) log_debug("Failed to parse CPU usage %s", v); + continue; } else if (streq(l, "cgroup")) { char *s;