diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-05-03 21:54:29 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2023-05-24 10:57:16 +0200 |
commit | 00078fb3096d8a117f4c4322f1804bb7d95bcbc4 (patch) | |
tree | 13fa8f6a2f0f9cb24856a4b3e348e36f905cd82d /src/core/execute.c | |
parent | mount: check right before invoking /bin/umount if it makes sense (diff) | |
download | systemd-00078fb3096d8a117f4c4322f1804bb7d95bcbc4.tar.xz systemd-00078fb3096d8a117f4c4322f1804bb7d95bcbc4.zip |
execute: add missing NULL handling
Diffstat (limited to 'src/core/execute.c')
-rw-r--r-- | src/core/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 6595931809..5e327465da 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -2787,7 +2787,7 @@ static char **credential_search_path( if (DEBUG_LOGGING) { _cleanup_free_ char *t = strv_join(l, ":"); - log_debug("Credential search path is: %s", t); + log_debug("Credential search path is: %s", strempty(t)); } return TAKE_PTR(l); |