summaryrefslogtreecommitdiffstats
path: root/apps/s_cb.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-06-04 14:26:55 -0400
committerRich Salz <rsalz@openssl.org>2015-06-09 12:48:55 -0400
commit7768e116dc0f2ad7c8d2241b887fc6c66d03e3bb (patch)
treebb758dbc279a225068e96c01c9ceae36f3b26b61 /apps/s_cb.c
parent51b04a6117510d8a771f619cb419985f4dec32bb (diff)
Use bio_err not stderr in apps.
Except for VMS startup code. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/s_cb.c')
-rw-r--r--apps/s_cb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index 35366c5675..44e70f2179 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -931,8 +931,9 @@ static int set_cert_cb(SSL *ssl, void *arg)
static int retry_cnt;
if (retry_cnt < 5) {
retry_cnt++;
- fprintf(stderr, "Certificate callback retry test: count %d\n",
- retry_cnt);
+ BIO_printf(bio_err,
+ "Certificate callback retry test: count %d\n",
+ retry_cnt);
return -1;
}
#endif