Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 204329
b: refs/heads/master
c: 8db0507
h: refs/heads/master
i:
  204327: 3f6270e
v: v3
  • Loading branch information
Julia Lawall authored and Herbert Xu committed May 26, 2010
1 parent b77278b commit 8855187
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1efbd15c3bc2b79d33e033e898211109c32159fa
refs/heads/master: 8db050786aaf7a43f4c7a900a103f99ea0fb493f
2 changes: 1 addition & 1 deletion trunk/crypto/authenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ static struct crypto_instance *crypto_authenc_alloc(struct rtattr **tb)
auth = ahash_attr_alg(tb[1], CRYPTO_ALG_TYPE_HASH,
CRYPTO_ALG_TYPE_AHASH_MASK);
if (IS_ERR(auth))
return ERR_PTR(PTR_ERR(auth));
return ERR_CAST(auth);

auth_base = &auth->base;

Expand Down
2 changes: 1 addition & 1 deletion trunk/crypto/ctr.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static struct crypto_instance *crypto_ctr_alloc(struct rtattr **tb)
alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
CRYPTO_ALG_TYPE_MASK);
if (IS_ERR(alg))
return ERR_PTR(PTR_ERR(alg));
return ERR_CAST(alg);

/* Block size must be >= 4 bytes. */
err = -EINVAL;
Expand Down
2 changes: 1 addition & 1 deletion trunk/crypto/xts.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ static struct crypto_instance *alloc(struct rtattr **tb)
alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER,
CRYPTO_ALG_TYPE_MASK);
if (IS_ERR(alg))
return ERR_PTR(PTR_ERR(alg));
return ERR_CAST(alg);

inst = crypto_alloc_instance("xts", alg);
if (IS_ERR(inst))
Expand Down

0 comments on commit 8855187

Please sign in to comment.