提交 e6578078 编写于 作者: R Richard Levitte

Correct missing prototype

Reviewed-by: NTim Hudson <tjh@openssl.org>
上级 36830eca
......@@ -83,7 +83,7 @@ struct ssl_conf_cmd {
static struct ssl_conf_name *ssl_names;
static size_t ssl_names_count;
static void ssl_module_free()
static void ssl_module_free(CONF_IMODULE *md)
{
size_t i, j;
if (ssl_names == NULL)
......@@ -161,7 +161,7 @@ static int ssl_module_init(CONF_IMODULE *md, const CONF *cnf)
rv = 1;
err:
if (rv == 0)
ssl_module_free();
ssl_module_free(md);
return rv;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册