summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Schroeder <schrdave@amazon.com>2023-04-12 16:48:21 -0700
committerGitHub <noreply@github.com>2023-04-13 07:48:21 +0800
commit9c669abb7106ae340ea47e7747d3bd054fbacdc5 (patch)
tree0ceb13d4d3df6b5506cac29352b9c8919d30f3fc /src
parent5015b5014bcff93371aef2c78b92efcfc2e38a40 (diff)
downloadsystemd-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.c2
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;
}