diff options
author | KaoruToda <kunnpuu@gmail.com> | 2017-10-09 20:05:58 +0900 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-10-09 13:17:09 +0100 |
commit | 208fb891e36f16d20262710c70ef0ff3df0e885c (patch) | |
tree | 514e6161c7c21122fced736efaddd87f5b5e0538 /crypto/des/set_key.c | |
parent | 2e8b5d75afaff7c9b75917b750f997dc82336fac (diff) | |
download | openssl-new-208fb891e36f16d20262710c70ef0ff3df0e885c.tar.gz |
Since return is inconsistent, I removed unnecessary parentheses and
unified them.
- return (0); -> return 0;
- return (1); -> return 1;
- return (-1); -> return -1;
Reviewed-by: Stephen Henson <steve@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4500)
Diffstat (limited to 'crypto/des/set_key.c')
-rw-r--r-- | crypto/des/set_key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/des/set_key.c b/crypto/des/set_key.c index cd3ec67ecb..91b83ee3fe 100644 --- a/crypto/des/set_key.c +++ b/crypto/des/set_key.c @@ -67,7 +67,7 @@ int DES_check_key_parity(const_DES_cblock *key) if ((*key)[i] != odd_parity[(*key)[i]]) return (0); } - return (1); + return 1; } /*- @@ -114,7 +114,7 @@ int DES_is_weak_key(const_DES_cblock *key) * 97/03/18 */ if (memcmp(weak_keys[i], key, sizeof(DES_cblock)) == 0) - return (1); + return 1; return (0); } |