mirror of
https://github.com/systemd/systemd.git
synced 2024-12-27 07:22:31 +03:00
cryptsetup-tokens: fix typo in tpm2 token dump output
cryptsetup_token_dump() gets called when the user calls "cryptsetup luksDump" for a volume and it prints the token-specific data. The tpm2 cryptsetup_token_dump() function misspells tpm2 as tmp2 on two lines of its output. Fix that.
This commit is contained in:
parent
8fd4d27f3c
commit
dfba45185c
@ -167,8 +167,8 @@ _public_ void cryptsetup_token_dump(
|
|||||||
|
|
||||||
crypt_log(cd, "\ttpm2-pcrs: %s\n", strna(pcrs_str));
|
crypt_log(cd, "\ttpm2-pcrs: %s\n", strna(pcrs_str));
|
||||||
crypt_log(cd, "\ttpm2-bank: %s\n", strna(tpm2_pcr_bank_to_string(pcr_bank)));
|
crypt_log(cd, "\ttpm2-bank: %s\n", strna(tpm2_pcr_bank_to_string(pcr_bank)));
|
||||||
crypt_log(cd, "\ttmp2-blob: %s\n", blob_str);
|
crypt_log(cd, "\ttpm2-blob: %s\n", blob_str);
|
||||||
crypt_log(cd, "\ttmp2-policy-hash:" CRYPT_DUMP_LINE_SEP "%s\n", policy_hash_str);
|
crypt_log(cd, "\ttpm2-policy-hash:" CRYPT_DUMP_LINE_SEP "%s\n", policy_hash_str);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user