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_0_9_6c~26^2~119 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=41ebed27faa5e7b283313f97729a9f52746c1ac2;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 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); }