1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00

creds: trivial coding style fixes

As per:

https://github.com/systemd/systemd/pull/23170#pullrequestreview-959233817
This commit is contained in:
Lennart Poettering 2022-05-02 18:04:53 +02:00
parent 0ba05e754c
commit 07a442ef8b

View File

@ -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 */