X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=crypto%2Fapi.c;h=2a81e98a0021074b9ce8e2ac54eb876c1dcf7607;hb=ac88ee3b6cbac80c32556a39fe16c4bbc55fcbc5;hp=a2b39c5f3649de2c513ecbec7fd45c2fd6bbdaf4;hpb=9fbeace73cb7c7b80de0411b4ba7b879a06e202d;p=deliverable%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); }