diff options
author | David Schroeder <schrdave@amazon.com> | 2023-04-12 16:48:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 07:48:21 +0800 |
commit | 9c669abb7106ae340ea47e7747d3bd054fbacdc5 (patch) | |
tree | 0ceb13d4d3df6b5506cac29352b9c8919d30f3fc /src | |
parent | 5015b5014bcff93371aef2c78b92efcfc2e38a40 (diff) | |
download | systemd-9c669abb7106ae340ea47e7747d3bd054fbacdc5.tar.gz |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/load-fragment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index 99d40b7490..686a72402d 100644 --- a/src/core/load-fragment.c +++ b/src/core/load-fragment.c @@ -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; } |