From 975efcbaee68de952437d255267ea456c3f27d37 Mon Sep 17 00:00:00 2001
From: Andy Polyakov <appro@openssl.org>
Date: Tue, 4 Jul 2006 20:27:44 +0000
Subject: [PATCH] Typos(?) in HEAD/crypto/evp/p_lib.c.

---
 crypto/evp/p_lib.c | 6 +++---
 1 file 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;
 			}
-- 
2.40.0