From: Luca Boccassi Date: Sat, 14 Oct 2023 09:03:33 +0000 (+0100) Subject: core: fix deserialization copypasta X-Git-Tag: v255-rc1~244 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=da638eb4c9d1e839d17e8e02500b18e564c7a07b;p=thirdparty%2Fsystemd.git core: fix deserialization copypasta CID#1522788 --- diff --git a/src/core/execute-serialize.c b/src/core/execute-serialize.c index 3427e48f483..b006f9c5266 100644 --- a/src/core/execute-serialize.c +++ b/src/core/execute-serialize.c @@ -2972,7 +2972,7 @@ static int exec_context_deserialize(ExecContext *c, FILE *f) { r = parse_boolean(val); if (r < 0) return r; - r = c->non_blocking; + c->non_blocking = r; } else if ((val = startswith(l, "exec-context-ignore-sigpipe="))) { r = parse_boolean(val); if (r < 0)