diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2009-06-19 08:37:00 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-06-19 08:37:00 -0400 |
commit | ea4006576945195ed35824acfb4007ca7cb78b70 (patch) | |
tree | 56cc0724ba883055696b5c223a4dc3ec10b573f9 /crypto/tcrypt.c | |
parent | 27300176d75e4723e2125e745a98a77bf0133f72 (diff) |
crypto: tcrypt - Fix module return code when testing by name
We should return 0/-ENOENT instead of 1/0 when testing by name.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/tcrypt.c')
-rw-r--r-- | crypto/tcrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index dfeec0c544cb..a890a6792c7b 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c | |||
@@ -889,7 +889,7 @@ static int do_test(int m) | |||
889 | 889 | ||
890 | static int do_alg_test(const char *alg, u32 type) | 890 | static int do_alg_test(const char *alg, u32 type) |
891 | { | 891 | { |
892 | return crypto_has_alg(alg, type, CRYPTO_ALG_TYPE_MASK); | 892 | return crypto_has_alg(alg, type, CRYPTO_ALG_TYPE_MASK) ? 0 : -ENOENT; |
893 | } | 893 | } |
894 | 894 | ||
895 | static int __init tcrypt_mod_init(void) | 895 | static int __init tcrypt_mod_init(void) |