fs/zfs/zfscrypt.c: fix indentation.

This commit is contained in:
Andrei Borzenkov 2015-01-27 21:13:10 +03:00
parent fa13e60527
commit 3900726fa8
1 changed files with 5 additions and 5 deletions

View File

@ -397,11 +397,11 @@ grub_zfs_load_key_real (const struct grub_zfs_key *key,
err = grub_crypto_cipher_set_key (ret, decrypted, keylen);
if (err)
{
grub_errno = GRUB_ERR_NONE;
grub_crypto_cipher_close (ret);
grub_crypto_cipher_close (cipher);
continue;
}
grub_errno = GRUB_ERR_NONE;
grub_crypto_cipher_close (ret);
grub_crypto_cipher_close (cipher);
continue;
}
grub_crypto_cipher_close (cipher);
return ret;
}