summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-08-12 17:44:32 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-08-12 17:44:32 +0000
commit710069c19ee1795dfd614a4ba683d07e1b8e6f81 (patch)
treedc8522ce253e9841f209433a49b6fa12c932d98f /ssl/d1_both.c
parentddd3a617ca96914707fc414200b445b52fe6c0ad (diff)
Fix warnings.
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 a584511c84..ffac2c2415 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -1141,7 +1141,7 @@ dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
s->d1->retransmitting = 0;
- BIO_flush(SSL_get_wbio(s));
+ (void)BIO_flush(SSL_get_wbio(s));
return ret;
}