X-Git-Url: http://git.cascardo.info/?a=blobdiff_plain;f=crypto%2Fapi.c;h=2a81e98a0021074b9ce8e2ac54eb876c1dcf7607;hb=36c0a48fe5fa119090749e5fa774e95c7bfd0f5e;hp=a2b39c5f3649de2c513ecbec7fd45c2fd6bbdaf4;hpb=780a0ff76e9527fe7c784aa7250dcfc449560535;p=cascardo%2Flinux.git diff --git a/crypto/api.c b/crypto/api.c index a2b39c5f3649..2a81e98a0021 100644 --- a/crypto/api.c +++ b/crypto/api.c @@ -216,11 +216,11 @@ struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask) alg = crypto_alg_lookup(name, type, mask); if (!alg) { - request_module("%s", name); + request_module("crypto-%s", name); if (!((type ^ CRYPTO_ALG_NEED_FALLBACK) & mask & CRYPTO_ALG_NEED_FALLBACK)) - request_module("%s-all", name); + request_module("crypto-%s-all", name); alg = crypto_alg_lookup(name, type, mask); }