Remove unused paramater.

git-svn-id: https://cryptsetup.googlecode.com/svn/trunk@483 36d66b0a-2a48-0410-832c-cd162a569da5
This commit is contained in:
Milan Broz
2011-03-23 11:43:11 +00:00
parent 8256b673a1
commit 22e5cda9c6
3 changed files with 1 additions and 3 deletions

View File

@@ -178,7 +178,6 @@ int LOOPAES_activate(struct crypt_device *cd,
const char *base_cipher,
unsigned int keys_count,
struct volume_key *vk,
const char *hash,
uint64_t offset,
uint64_t skip,
uint32_t flags)

View File

@@ -17,7 +17,6 @@ int LOOPAES_activate(struct crypt_device *cd,
const char *base_cipher,
unsigned int keys_count,
struct volume_key *vk,
const char *hash,
uint64_t offset,
uint64_t skip,
uint32_t flags);

View File

@@ -2027,7 +2027,7 @@ int crypt_activate_by_keyfile(struct crypt_device *cd,
goto out;
if (name)
r = LOOPAES_activate(cd, name, cd->loopaes_cipher,
key_count, vk, NULL,
key_count, vk,
cd->loopaes_hdr.offset,
cd->loopaes_hdr.skip,
flags);