summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-07-04 13:09:27 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-07-04 13:09:27 +0000
commit761f3b403b45d3260b5c7cdfce45a57691c27c60 (patch)
treea50b41c2eb942536e0376cb459a8977345569987 /ssl/d1_both.c
parent4570d29404e529ffd1c27709fa693e4d671e2086 (diff)
Fix more unused value 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 b746a50dd7..7e6d300377 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -1142,7 +1142,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;
}