Skip to content

Commit

Permalink
core: fix deserialization copypasta
Browse files Browse the repository at this point in the history
CID#1522788
  • Loading branch information
bluca committed Oct 14, 2023
1 parent 8d85efa commit da638eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/execute-serialize.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit da638eb

Please sign in to comment.