]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
cryptenroll: align tables
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 22 Sep 2023 18:36:44 +0000 (20:36 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 26 Sep 2023 13:35:06 +0000 (15:35 +0200)
src/cryptenroll/cryptenroll.c

index 1ffa2fb5f2d2a0c84c17c2652e1e9165574cf74d..45a058f42660c5e89e67a5cc42a456b592fe5d2d 100644 (file)
@@ -78,9 +78,9 @@ static bool wipe_requested(void) {
 static const char* const enroll_type_table[_ENROLL_TYPE_MAX] = {
         [ENROLL_PASSWORD] = "password",
         [ENROLL_RECOVERY] = "recovery",
-        [ENROLL_PKCS11] = "pkcs11",
-        [ENROLL_FIDO2] = "fido2",
-        [ENROLL_TPM2] = "tpm2",
+        [ENROLL_PKCS11]   = "pkcs11",
+        [ENROLL_FIDO2]    = "fido2",
+        [ENROLL_TPM2]     = "tpm2",
 };
 
 DEFINE_STRING_TABLE_LOOKUP(enroll_type, EnrollType);
@@ -88,9 +88,9 @@ DEFINE_STRING_TABLE_LOOKUP(enroll_type, EnrollType);
 static const char *const luks2_token_type_table[_ENROLL_TYPE_MAX] = {
         /* ENROLL_PASSWORD has no entry here, as slots of this type do not have a token in the LUKS2 header */
         [ENROLL_RECOVERY] = "systemd-recovery",
-        [ENROLL_PKCS11] = "systemd-pkcs11",
-        [ENROLL_FIDO2] = "systemd-fido2",
-        [ENROLL_TPM2] = "systemd-tpm2",
+        [ENROLL_PKCS11]   = "systemd-pkcs11",
+        [ENROLL_FIDO2]    = "systemd-fido2",
+        [ENROLL_TPM2]     = "systemd-tpm2",
 };
 
 DEFINE_STRING_TABLE_LOOKUP(luks2_token_type, EnrollType);
@@ -150,7 +150,6 @@ static int help(void) {
 }
 
 static int parse_argv(int argc, char *argv[]) {
-
         enum {
                 ARG_VERSION = 0x100,
                 ARG_PASSWORD,