diff options
Diffstat (limited to 'drivers/net/ppp_mppe.c')
-rw-r--r-- | drivers/net/ppp_mppe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ppp_mppe.c b/drivers/net/ppp_mppe.c index e7a0eb4fca60..f3655fd772f5 100644 --- a/drivers/net/ppp_mppe.c +++ b/drivers/net/ppp_mppe.c | |||
@@ -710,8 +710,8 @@ static struct compressor ppp_mppe = { | |||
710 | static int __init ppp_mppe_init(void) | 710 | static int __init ppp_mppe_init(void) |
711 | { | 711 | { |
712 | int answer; | 712 | int answer; |
713 | if (!(crypto_alg_available("ecb(arc4)", 0) && | 713 | if (!(crypto_has_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC) && |
714 | crypto_alg_available("sha1", 0))) | 714 | crypto_has_hash("sha1", 0, CRYPTO_ALG_ASYNC))) |
715 | return -ENODEV; | 715 | return -ENODEV; |
716 | 716 | ||
717 | sha_pad = kmalloc(sizeof(struct sha_pad), GFP_KERNEL); | 717 | sha_pad = kmalloc(sizeof(struct sha_pad), GFP_KERNEL); |