summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-08-12 18:56:14 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-08-12 18:56:14 +0000
commit367eb1f125063b9e76b6eaaacd85705023d435b4 (patch)
tree40a59b5e201e9d62318be898fac42afaf3ef9da4 /apps
parent3444961787a7205822f7326ae1e062391c8f0bcb (diff)
Fix warning and make no-tlsext work.
Diffstat (limited to 'apps')
-rw-r--r--apps/s_cb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index 31616bb66d..0366cc8a40 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -649,5 +649,5 @@ void MS_CALLBACK tlsext_cb(SSL *s, int client_server, int type,
client_server ? "server": "client",
extname, type, len);
BIO_dump(bio, (char *)data, len);
- BIO_flush(bio);
+ (void)BIO_flush(bio);
}