]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
fs/zfs/zfscrypt.c: fix indentation.
authorAndrei Borzenkov <arvidjaar@gmail.com>
Tue, 27 Jan 2015 18:13:10 +0000 (21:13 +0300)
committerAndrei Borzenkov <arvidjaar@gmail.com>
Tue, 27 Jan 2015 18:13:10 +0000 (21:13 +0300)
grub-core/fs/zfs/zfscrypt.c

index 834f858a07ee631a4cd4c8c71d02a33eea9ad0cb..87eef621d6daf16d62d6196d2fc5897453e74fa3 100644 (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;
     }