Correct a lot of printing calls. Remove extra arguments...

This commit is contained in:
Richard Levitte
2003-04-03 23:39:48 +00:00
parent c433d72593
commit 3ae70939ba
15 changed files with 36 additions and 36 deletions

View File

@@ -1597,7 +1597,7 @@ static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
(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;
}