From: Lutz Jänicke Date: Tue, 16 Oct 2001 14:24:46 +0000 (+0000) Subject: Flush buffers to prevent mixed output (Adam Back ). X-Git-Tag: OpenSSL-engine-0_9_6c~39^2~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41ebed27faa5e7b283313f97729a9f52746c1ac2;p=openssl Flush buffers to prevent mixed output (Adam Back ). --- diff --git a/apps/s_client.c b/apps/s_client.c index 7429a9b641..2c9ae35462 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); }