summaryrefslogtreecommitdiff
path: root/src/creds
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-05-02 18:04:53 +0200
committerLennart Poettering <lennart@poettering.net>2022-05-02 18:04:53 +0200
commit07a442ef8b7822af2bbddc5b8938525e39de9981 (patch)
tree22f81d87e1b325c250d55e10353103fb715df9d0 /src/creds
parent0ba05e754cbd028fb8487564cfd90aa18318f516 (diff)
downloadsystemd-07a442ef8b7822af2bbddc5b8938525e39de9981.tar.gz
creds: trivial coding style fixes
As per: https://github.com/systemd/systemd/pull/23170#pullrequestreview-959233817
Diffstat (limited to 'src/creds')
-rw-r--r--src/creds/creds.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/creds/creds.c b/src/creds/creds.c
index 565bdbe009..59bb072115 100644
--- a/src/creds/creds.c
+++ b/src/creds/creds.c
@@ -61,9 +61,9 @@ static const char* transcode_mode_table[_TRANSCODE_MAX] = {
DEFINE_PRIVATE_STRING_TABLE_LOOKUP_FROM_STRING(transcode_mode, TranscodeMode);
static int open_credential_directory(
+ bool encrypted,
DIR **ret_dir,
- const char **ret_prefix,
- bool encrypted) {
+ const char **ret_prefix) {
const char *p;
DIR *d;
@@ -120,7 +120,7 @@ static int add_credentials_to_table(Table *t, bool encrypted) {
assert(t);
- r = open_credential_directory(&d, &prefix, encrypted);
+ r = open_credential_directory(encrypted, &d, &prefix);
if (r < 0)
return r;
if (!d)
@@ -377,10 +377,10 @@ static int verb_cat(int argc, char **argv, void *userdata) {
}
/* Look both in regular and in encrypted credentials */
- for (encrypted = 0; encrypted < 2; encrypted ++) {
+ for (encrypted = 0; encrypted < 2; encrypted++) {
_cleanup_(closedirp) DIR *d = NULL;
- r = open_credential_directory(&d, NULL, encrypted);
+ r = open_credential_directory(encrypted, &d, NULL);
if (r < 0)
return log_error_errno(r, "Failed to open credentials directory: %m");
if (!d) /* Not set */