From: Lutz Jänicke Date: Tue, 16 Oct 2001 14:25:27 +0000 (+0000) Subject: Flush buffers to prevent mixed output (Adam Back ). X-Git-Tag: OpenSSL_0_9_6c~88 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b914a547e187fca6d58752e5f4ccbb7f770bf941;p=oweals%2Fopenssl.git Flush buffers to prevent mixed output (Adam Back ). --- 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); }