summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-06-05 14:57:10 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-06-05 14:57:10 +0000
commit7074f1df077e4b30881a4f5e9d32229eae679f48 (patch)
tree5d8f6dcc88ea7cf53d7a1d757a938a1525d19c6b /ssl/d1_both.c
parent67d8ab07e68bc8e8f2f50272edb877b200d46cd6 (diff)
Stop gcc bracket warning.
Diffstat (limited to 'ssl/d1_both.c')
-rw-r--r--ssl/d1_both.c2
1 files changed, 1 insertions, 1 deletions
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];