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