aboutsummaryrefslogtreecommitdiff
path: root/crypto/x509/x509_lu.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-01-10 20:36:02 +0000
committerBen Laurie <ben@openssl.org>1999-01-10 20:36:02 +0000
commita6801a91cdc9a7dc8afae8c1cc2b5a0572dd046c (patch)
tree81bf5d89417d529ec651e2bbdcc35350f61bb04e /crypto/x509/x509_lu.c
parent1933485b60d2f8f233150178507857c77822f05a (diff)
downloadopenssl-a6801a91cdc9a7dc8afae8c1cc2b5a0572dd046c.zip
openssl-a6801a91cdc9a7dc8afae8c1cc2b5a0572dd046c.tar.gz
openssl-a6801a91cdc9a7dc8afae8c1cc2b5a0572dd046c.tar.bz2
Add prototype, fix parameter passing bug.
Diffstat (limited to 'crypto/x509/x509_lu.c')
-rw-r--r--crypto/x509/x509_lu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/x509_lu.c b/crypto/x509/x509_lu.c
index 8ea6819..a70ce77 100644
--- a/crypto/x509/x509_lu.c
+++ b/crypto/x509/x509_lu.c
@@ -175,7 +175,7 @@ X509_OBJECT *ret;
{
if ((ctx->method == NULL) || (ctx->method->get_by_alias == NULL))
return(X509_LU_FAIL);
- return(ctx->method->get_by_alias(ctx,str,len,ret));
+ return(ctx->method->get_by_alias(ctx,type,str,len,ret));
}
static unsigned long x509_object_hash(a)