summaryrefslogtreecommitdiffstats
path: root/crypto/evp/p_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-04-05 13:04:02 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-04-05 13:04:02 +0000
commit732a40e107f056a6678602ab869f2ba9230e0d24 (patch)
tree1180f44bec95ff53a12c1830d695fde51484575c /crypto/evp/p_lib.c
parent29da3ade3c2a6561d9f3d197d167d3dffe0cdf9c (diff)
Last arg to EVP_PKEY_assign() should be void *.
Diffstat (limited to 'crypto/evp/p_lib.c')
-rw-r--r--crypto/evp/p_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c
index 0d3a69b48a..1a1e61a64e 100644
--- a/crypto/evp/p_lib.c
+++ b/crypto/evp/p_lib.c
@@ -185,7 +185,7 @@ EVP_PKEY *EVP_PKEY_new(void)
return(ret);
}
-int EVP_PKEY_assign(EVP_PKEY *pkey, int type, char *key)
+int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)
{
const EVP_PKEY_ASN1_METHOD *ameth;
if (pkey == NULL) return(0);