1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

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
This commit is contained in:
Stephen Henson
2010-11-30 00:58:07 +00:00
parent 7c4294b796
commit 8ac6f8e754

View File

@@ -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); conn_rec *c = (conn_rec *)SSL_get_app_data(ssl);
SSLModConfigRec *mc = myModConfig(c->base_server); SSLModConfigRec *mc = myModConfig(c->base_server);
static EC_KEY *ecdh = NULL; static EC_KEY *ecdh = NULL;
static init = 0; static int init = 0;
/* XXX Uses 256-bit key for now. TODO: support other sizes. */ /* XXX Uses 256-bit key for now. TODO: support other sizes. */
ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, c, ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, c,