pid1: fix coredump_filter setting

Correct what appears to be a copy/paste error in config_parse_exec_coredump_filter that is preventing the coredump_filter setting from working correctly.
This commit is contained in:
David Schroeder 2023-04-12 16:48:21 -07:00 committed by GitHub
parent 5015b5014b
commit 9c669abb71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -800,7 +800,7 @@ int config_parse_exec_coredump_filter(
}
c->coredump_filter |= f;
c->oom_score_adjust_set = true;
c->coredump_filter_set = true;
return 0;
}