summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-02-28 12:58:43 +0000
committerRichard Levitte <levitte@openssl.org>2002-02-28 12:58:43 +0000
commit7d68189d8a700fe16b1ac795a4f79fe2862d1e12 (patch)
tree5d6d84649e5a3b2155025fd729a2d72e7d7e390d /crypto
parent26414ee013170f2d8e42b1995dbb30c03e7ed16c (diff)
Make sure aep_close_connection() is declared and has a prototype that's
consistent with the rest of the AEP functions
Diffstat (limited to 'crypto')
-rw-r--r--crypto/engine/hw_aep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/engine/hw_aep.c b/crypto/engine/hw_aep.c
index cefd3f006a..f25013f787 100644
--- a/crypto/engine/hw_aep.c
+++ b/crypto/engine/hw_aep.c
@@ -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;