diff options
author | Stephen Henson <drh@apache.org> | 2010-11-30 01:58:07 +0100 |
---|---|---|
committer | Stephen Henson <drh@apache.org> | 2010-11-30 01:58:07 +0100 |
commit | 8ac6f8e754c0d414594609075d27500d839d09f5 (patch) | |
tree | abb17febf094237e6961fabd394f0df0ae5ee53b | |
parent | Use correct type, need OPENSSL_STRING for >= 1.0 which doesn't exist on 0.9.8 (diff) | |
download | apache2-8ac6f8e754c0d414594609075d27500d839d09f5.tar.xz apache2-8ac6f8e754c0d414594609075d27500d839d09f5.zip |
Stop warning, init should be an int.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1040373 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/ssl/ssl_engine_kernel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/ssl_engine_kernel.c b/modules/ssl/ssl_engine_kernel.c index fd32cacfa0..60b2b71541 100644 --- a/modules/ssl/ssl_engine_kernel.c +++ b/modules/ssl/ssl_engine_kernel.c @@ -1382,7 +1382,7 @@ EC_KEY *ssl_callback_TmpECDH(SSL *ssl, int export, int keylen) conn_rec *c = (conn_rec *)SSL_get_app_data(ssl); SSLModConfigRec *mc = myModConfig(c->base_server); static EC_KEY *ecdh = NULL; - static init = 0; + static int init = 0; /* XXX Uses 256-bit key for now. TODO: support other sizes. */ ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, c, |