Fix stupid typos.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1023533 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Henson
2010-10-17 17:52:38 +00:00
parent dc1fb839b5
commit 2783b4e8fa

View File

@ -94,8 +94,8 @@ static int ssl_tmp_key_init_rsa(server_rec *s,
{
RSA *tkey;
BIGNUM *bn_f4;
if (!(tkey == RSA_new())
|| !(bn_f4 == BN_new())
if (!(tkey = RSA_new())
|| !(bn_f4 = BN_new())
|| !BN_set_word(bn_f4, RSA_F4)
|| !RSA_generate_key_ex(tkey, bits, bn_f4, NULL))
{