diff options
| author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-01-11 13:36:39 +0100 |
|---|---|---|
| committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-01-11 13:39:52 +0100 |
| commit | a7d15a24659770b0fa9f4cd26fc7bbb17765cbb7 (patch) | |
| tree | 6795f52523c012270f8ca0f4c976704d427aea36 /src/basic/log.h | |
| parent | 56a5f4969b96529c82ec8cc08db4fa8e9c61e7b9 (diff) | |
| download | systemd-a7d15a24659770b0fa9f4cd26fc7bbb17765cbb7.tar.gz | |
nss: only read logging config from environment variables
log_parse_environment() uses should_parse_proc_cmdline() to determine whether
it should parse settings from the kernel command line. But the checks that
should_parse_proc_cmdline() apply to the whole process, and we could get a positive
answer also when log_parse_environment() was called from one of the nss modules.
In case of nss-modules, we don't want to look at the kernel command line.
log_parse_environment_variables() that only looks at the environment variables
is split out and used in the nss modules.
Fixes #22020.
Diffstat (limited to 'src/basic/log.h')
| -rw-r--r-- | src/basic/log.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/log.h b/src/basic/log.h index 7218b4bf71..1e2bec1646 100644 --- a/src/basic/log.h +++ b/src/basic/log.h @@ -82,6 +82,7 @@ int log_open(void); void log_close(void); void log_forget_fds(void); +void log_parse_environment_variables(void); void log_parse_environment(void); int log_dispatch_internal( |
