luks2: Add missing newline to debug message
The debug message printed when decryption with a keyslot fails is missing its trailing newline. Add it to avoid mangling it with subsequent output. Signed-off-by: Patrick Steinhardt <ps@pks.im> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
d0de8b37f6
commit
9404c41953
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@ luks2_recover_key (grub_disk_t disk,
|
||||||
(const grub_uint8_t *) passphrase, grub_strlen (passphrase));
|
(const grub_uint8_t *) passphrase, grub_strlen (passphrase));
|
||||||
if (ret)
|
if (ret)
|
||||||
{
|
{
|
||||||
grub_dprintf ("luks2", "Decryption with keyslot %"PRIuGRUB_SIZE" failed", i);
|
grub_dprintf ("luks2", "Decryption with keyslot %"PRIuGRUB_SIZE" failed\n", i);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue