Correct a lot of printing calls. Remove extra arguments...
diff --git a/ssl/ssltest.c b/ssl/ssltest.c index 45b211b..a304398 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c
@@ -1597,7 +1597,7 @@ (void)BIO_flush(bio_err); if(!RSA_generate_key_ex(rsa_tmp,keylength,RSA_F4,NULL)) { - BIO_printf(bio_err, "Error generating key.", keylength); + BIO_printf(bio_err, "Error generating key."); RSA_free(rsa_tmp); rsa_tmp = NULL; }