Remove needless bio_err argument

Many functions had a BIO* parameter, and it was always called
with bio_err.  Remove the param and just use bio_err.

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Rich Salz
2015-04-29 11:27:08 -04:00
parent bea6cd3e1c
commit ecf3a1fb18
13 changed files with 136 additions and 137 deletions

View File

@@ -1181,7 +1181,7 @@ int s_client_main(int argc, char **argv)
}
if (sdebug)
ssl_ctx_security_debug(ctx, bio_err, sdebug);
ssl_ctx_security_debug(ctx, sdebug);
if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
BIO_printf(bio_err, "Error setting verify params\n");
@@ -1663,7 +1663,7 @@ int s_client_main(int argc, char **argv)
}
if (c_brief) {
BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
print_ssl_summary(bio_err, con);
print_ssl_summary(con);
}
print_stuff(bio_c_out, con, full_log);