summaryrefslogtreecommitdiffstats
path: root/src/creds
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2024-03-11 19:13:57 +0100
committerGitHub <noreply@github.com>2024-03-11 19:13:57 +0100
commitb6fb31be45b032ad987082c7584cb1ba3141b654 (patch)
treee74665773c8f9b22b90ef2c44241d5bb3ca70bf9 /src/creds
parenttest/run-unit-tests: sort the test cases we're executing (diff)
parentshared/service-util: actually use the `bus_introspect` argument in `help()` (diff)
downloadsystemd-b6fb31be45b032ad987082c7584cb1ba3141b654.tar.xz
systemd-b6fb31be45b032ad987082c7584cb1ba3141b654.zip
Merge pull request #31721 from aafeijoo-suse/service-util-help-fix
shared/service-util: actually use the `bus_introspect` argument in `help()`
Diffstat (limited to 'src/creds')
-rw-r--r--src/creds/creds.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/creds/creds.c b/src/creds/creds.c
index 1bc6760fbb..6a62df5e3b 100644
--- a/src/creds/creds.c
+++ b/src/creds/creds.c
@@ -742,12 +742,13 @@ static int verb_help(int argc, char **argv, void *userdata) {
" --user Select user-scoped credential encryption\n"
" --uid=UID Select user for scoped credentials\n"
" -q --quiet Suppress output for 'has-tpm2' verb\n"
- "\nSee the %2$s for details.\n"
- , program_invocation_short_name
- , link
- , ansi_underline(), ansi_normal()
- , ansi_highlight(), ansi_normal()
- );
+ "\nSee the %2$s for details.\n",
+ program_invocation_short_name,
+ link,
+ ansi_underline(),
+ ansi_normal(),
+ ansi_highlight(),
+ ansi_normal());
return 0;
}