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)
This commit is contained in:
KaoruToda 2017-10-09 20:05:58 +09:00 committed by Matt Caswell
parent 2e8b5d75af
commit 208fb891e3
64 changed files with 152 additions and 152 deletions

View file

@ -56,7 +56,7 @@ int ssl3_do_change_cipher_spec(SSL *s)
}
s->s3->tmp.peer_finish_md_len = finish_md_len;
return (1);
return 1;
}
int ssl3_send_alert(SSL *s, int level, int desc)