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

This commit is contained in:
Lutz Jänicke 2001-10-16 14:24:46 +00:00
parent bf21446a2a
commit 41ebed27fa
1 changed files with 2 additions and 0 deletions

View File

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