summaryrefslogtreecommitdiffstats
path: root/crypto/evp/p_lib.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2006-07-04 20:27:44 +0000
committerAndy Polyakov <appro@openssl.org>2006-07-04 20:27:44 +0000
commit975efcbaee68de952437d255267ea456c3f27d37 (patch)
tree7d89c3358886c5fafafb6aa55b5ed267cbb67b30 /crypto/evp/p_lib.c
parent90e1b1fd7dafe3fe456848289a0527e728a4d9a3 (diff)
Typos(?) in HEAD/crypto/evp/p_lib.c.
Diffstat (limited to 'crypto/evp/p_lib.c')
-rw-r--r--crypto/evp/p_lib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c
index 6715c154b2..249ac2bd2a 100644
--- a/crypto/evp/p_lib.c
+++ b/crypto/evp/p_lib.c
@@ -161,13 +161,13 @@ int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
if (a->type != b->type)
return -1;
- if (a->meth)
+ if (a->ameth)
{
int ret;
/* Compare parameters if the algorithm has them */
- if (a->meth->param_cmp)
+ if (a->ameth->param_cmp)
{
- ret = a->meth->param_cmp(a, b);
+ ret = a->ameth->param_cmp(a, b);
if (ret <= 0)
return ret;
}