Since return is inconsistent, I removed unnecessary parentheses and
authorKaoruToda <kunnpuu@gmail.com>
Mon, 9 Oct 2017 11:05:58 +0000 (20:05 +0900)
committerMatt Caswell <matt@openssl.org>
Mon, 9 Oct 2017 12:17:09 +0000 (13:17 +0100)
commit208fb891e36f16d20262710c70ef0ff3df0e885c
tree514e6161c7c21122fced736efaddd87f5b5e0538
parent2e8b5d75afaff7c9b75917b750f997dc82336fac
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)
64 files changed:
apps/apps.c
apps/openssl.c
apps/rehash.c
apps/s_cb.c
apps/s_server.c
crypto/asn1/a_bitstr.c
crypto/asn1/a_digest.c
crypto/asn1/a_print.c
crypto/asn1/evp_asn1.c
crypto/bio/b_sock.c
crypto/bio/bf_buff.c
crypto/bio/bf_lbuf.c
crypto/bio/bf_nbio.c
crypto/bio/bf_null.c
crypto/bio/bss_acpt.c
crypto/bio/bss_conn.c
crypto/bio/bss_dgram.c
crypto/bio/bss_fd.c
crypto/bio/bss_log.c
crypto/bio/bss_mem.c
crypto/bio/bss_null.c
crypto/bio/bss_sock.c
crypto/bn/bn_div.c
crypto/bn/bn_lib.c
crypto/bn/bn_mont.c
crypto/bn/bn_mul.c
crypto/bn/bn_prime.c
crypto/bn/bn_recp.c
crypto/bn/bn_shift.c
crypto/bn/bn_word.c
crypto/des/rand_key.c
crypto/des/set_key.c
crypto/dh/dh_key.c
crypto/dsa/dsa_asn1.c
crypto/dsa/dsa_ossl.c
crypto/dso/dso_dl.c
crypto/dso/dso_dlfcn.c
crypto/dso/dso_lib.c
crypto/dso/dso_vms.c
crypto/dso/dso_win32.c
crypto/evp/encode.c
crypto/evp/evp_enc.c
crypto/pkcs7/pk7_doit.c
crypto/pkcs7/pk7_lib.c
crypto/txt_db/txt_db.c
crypto/whrlpool/wp_dgst.c
crypto/x509/t_req.c
crypto/x509/t_x509.c
crypto/x509/x509_d2.c
crypto/x509/x509_set.c
crypto/x509/x509_v3.c
crypto/x509/x509name.c
ssl/bio_ssl.c
ssl/record/rec_layer_d1.c
ssl/record/ssl3_record.c
ssl/s3_enc.c
ssl/s3_lib.c
ssl/s3_msg.c
ssl/ssl_lib.c
ssl/ssl_sess.c
ssl/ssl_txt.c
ssl/statem/statem_lib.c
ssl/t1_enc.c
ssl/tls_srp.c