mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
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:
@@ -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))
|
||||
{
|
||||
|
Reference in New Issue
Block a user