From 7768e116dc0f2ad7c8d2241b887fc6c66d03e3bb Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Thu, 4 Jun 2015 14:26:55 -0400 Subject: Use bio_err not stderr in apps. Except for VMS startup code. Reviewed-by: Richard Levitte --- apps/s_cb.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'apps/s_cb.c') 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 -- cgit v1.2.3