mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
Make sure aep_close_connection() is declared and has a prototype that's
consistent with the rest of the AEP functions
This commit is contained in:
parent
26414ee013
commit
7d68189d8a
@ -92,6 +92,7 @@ static int aep_destroy(ENGINE *e);
|
|||||||
|
|
||||||
static AEP_RV aep_get_connection(AEP_CONNECTION_HNDL_PTR hConnection);
|
static AEP_RV aep_get_connection(AEP_CONNECTION_HNDL_PTR hConnection);
|
||||||
static AEP_RV aep_return_connection(AEP_CONNECTION_HNDL hConnection);
|
static AEP_RV aep_return_connection(AEP_CONNECTION_HNDL hConnection);
|
||||||
|
static AEP_RV aep_close_connection(AEP_CONNECTION_HNDL hConnection);
|
||||||
static AEP_RV aep_close_all_connections(int use_engine_lock, int *in_use);
|
static AEP_RV aep_close_all_connections(int use_engine_lock, int *in_use);
|
||||||
|
|
||||||
/* BIGNUM stuff */
|
/* BIGNUM stuff */
|
||||||
@ -950,7 +951,7 @@ static AEP_RV aep_return_connection(AEP_CONNECTION_HNDL hConnection)
|
|||||||
return AEP_R_OK;
|
return AEP_R_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int aep_close_connection(unsigned int hConnection)
|
static AEP_RV aep_close_connection(AEP_CONNECTION_HNDL hConnection)
|
||||||
{
|
{
|
||||||
int count;
|
int count;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user