ipsec: Fix name of CAST algorithm
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>
This commit is contained in:
parent
28d0325ce6
commit
245acb8772
|
@ -292,8 +292,8 @@ static struct xfrm_algo_desc ealg_list[] = {
|
|||
}
|
||||
},
|
||||
{
|
||||
.name = "cbc(cast128)",
|
||||
.compat = "cast128",
|
||||
.name = "cbc(cast5)",
|
||||
.compat = "cast5",
|
||||
|
||||
.uinfo = {
|
||||
.encr = {
|
||||
|
|
Loading…
Reference in New Issue