Skip to content

Commit

Permalink
ipsec: Fix name of CAST algorithm
Browse files Browse the repository at this point in the history
Our CAST algorithm is called cast5, not cast128.  Clearly nobody
has ever used it :)

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Herbert Xu authored and David S. Miller committed Jun 25, 2009
1 parent 28d0325 commit 245acb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/xfrm/xfrm_algo.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ static struct xfrm_algo_desc ealg_list[] = {
}
},
{
.name = "cbc(cast128)",
.compat = "cast128",
.name = "cbc(cast5)",
.compat = "cast5",

.uinfo = {
.encr = {
Expand Down

0 comments on commit 245acb8

Please sign in to comment.