]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
pid1: fix coredump_filter setting
authorDavid Schroeder <schrdave@amazon.com>
Wed, 12 Apr 2023 23:48:21 +0000 (16:48 -0700)
committerGitHub <noreply@github.com>
Wed, 12 Apr 2023 23:48:21 +0000 (07:48 +0800)
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.

src/core/load-fragment.c

index 99d40b74908d2c390d490e0d26ee954e681268dc..686a72402d624e6d7e9491bf0404f5bbb2c3c888 100644 (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;
 }