From b914a547e187fca6d58752e5f4ccbb7f770bf941 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lutz=20J=C3=A4nicke?= Date: Tue, 16 Oct 2001 14:25:27 +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 aa19e0a223..9cfe2b1580 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -896,5 +896,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); } -- 2.25.1