diff options
author | Rich Salz <rsalz@akamai.com> | 2015-06-04 20:26:55 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-06-09 18:48:55 +0200 |
commit | 7768e116dc0f2ad7c8d2241b887fc6c66d03e3bb (patch) | |
tree | bb758dbc279a225068e96c01c9ceae36f3b26b61 /apps/s_time.c | |
parent | No fprintf in the txt_db component (diff) | |
download | openssl-7768e116dc0f2ad7c8d2241b887fc6c66d03e3bb.tar.xz openssl-7768e116dc0f2ad7c8d2241b887fc6c66d03e3bb.zip |
Use bio_err not stderr in apps.
Except for VMS startup code.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/s_time.c')
-rw-r--r-- | apps/s_time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/s_time.c b/apps/s_time.c index 4f56174d65..ef95b5ada6 100644 --- a/apps/s_time.c +++ b/apps/s_time.c @@ -238,7 +238,7 @@ int s_time_main(int argc, char **argv) if (cipher == NULL) cipher = getenv("SSL_CIPHER"); if (cipher == NULL) { - fprintf(stderr, "No CIPHER specified\n"); + BIO_printf(bio_err, "No CIPHER specified\n"); goto end; } @@ -336,7 +336,7 @@ int s_time_main(int argc, char **argv) /* Get an SSL object so we can reuse the session id */ if ((scon = doConnection(NULL, host, ctx)) == NULL) { - fprintf(stderr, "Unable to get connection\n"); + BIO_printf(bio_err, "Unable to get connection\n"); goto end; } |