From: Dr. Stephen Henson Date: Fri, 5 Jun 2009 14:57:10 +0000 (+0000) Subject: Stop gcc bracket warning. X-Git-Tag: OpenSSL_1_0_0-beta3~57 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=7074f1df077e4b30881a4f5e9d32229eae679f48 Stop gcc bracket warning. --- diff --git a/ssl/d1_both.c b/ssl/d1_both.c index 7039d05f0e..a56586f4e9 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -575,7 +575,7 @@ dtls1_process_out_of_seq_message(SSL *s, struct hm_header_st* msg_hdr, int *ok) */ if (msg_hdr->seq <= s->d1->handshake_read_seq || msg_hdr->seq > s->d1->handshake_read_seq + 10 || item != NULL || - s->d1->handshake_read_seq == 0 && msg_hdr->type == SSL3_MT_FINISHED) + (s->d1->handshake_read_seq == 0 && msg_hdr->type == SSL3_MT_FINISHED)) { unsigned char devnull [256];