From 41ebed27faa5e7b283313f97729a9f52746c1ac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lutz=20J=C3=A4nicke?= Date: Tue, 16 Oct 2001 14:24:46 +0000 Subject: [PATCH] Flush buffers to prevent mixed output (Adam Back ). --- apps/s_client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/s_client.c b/apps/s_client.c index 7429a9b64..2c9ae3546 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -925,5 +925,7 @@ static void print_stuff(BIO *bio, SSL *s, int full) BIO_printf(bio,"---\n"); if (peer != NULL) X509_free(peer); + /* flush, or debugging output gets mixed with http response */ + BIO_flush(bio); }