Flush buffers to prevent mixed output (Adam Back <adam@cypherspace.org>).

This commit is contained in:
Lutz Jänicke 2001-10-16 14:25:27 +00:00
parent 03b148f4a9
commit b914a547e1

View File

@ -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);
}