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:
Richard Levitte 2002-02-28 12:58:43 +00:00
parent 26414ee013
commit 7d68189d8a

View File

@ -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_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);
/* BIGNUM stuff */
@ -950,7 +951,7 @@ static AEP_RV aep_return_connection(AEP_CONNECTION_HNDL hConnection)
return AEP_R_OK;
}
static int aep_close_connection(unsigned int hConnection)
static AEP_RV aep_close_connection(AEP_CONNECTION_HNDL hConnection)
{
int count;