1
0
Fork 0

crypto: api - Use formatting of module name

Besdies, for the old code, gcc-4.3.3 produced this warning:
  "format not a string literal and no format arguments"

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
hifive-unleashed-5.1
Alex Riesen 2009-06-02 14:13:14 +10:00 committed by Herbert Xu
parent a0cfae59f8
commit aa07a6990f
1 changed files with 3 additions and 6 deletions

View File

@ -217,14 +217,11 @@ struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask)
alg = crypto_alg_lookup(name, type, mask); alg = crypto_alg_lookup(name, type, mask);
if (!alg) { if (!alg) {
char tmp[CRYPTO_MAX_ALG_NAME]; request_module("%s", name);
request_module(name);
if (!((type ^ CRYPTO_ALG_NEED_FALLBACK) & mask & if (!((type ^ CRYPTO_ALG_NEED_FALLBACK) & mask &
CRYPTO_ALG_NEED_FALLBACK) && CRYPTO_ALG_NEED_FALLBACK))
snprintf(tmp, sizeof(tmp), "%s-all", name) < sizeof(tmp)) request_module("%s-all", name);
request_module(tmp);
alg = crypto_alg_lookup(name, type, mask); alg = crypto_alg_lookup(name, type, mask);
} }