]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
creds: trivial coding style fixes
authorLennart Poettering <lennart@poettering.net>
Mon, 2 May 2022 16:04:53 +0000 (18:04 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 2 May 2022 16:04:53 +0000 (18:04 +0200)
As per:

https://github.com/systemd/systemd/pull/23170#pullrequestreview-959233817

src/creds/creds.c

index 565bdbe009bf703bc2e3ade598d2d09f34ce7b82..59bb072115fe7a867275488bde53c3a7ca47804d 100644 (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 */