提交 975efcba 编写于 作者: A Andy Polyakov

Typos(?) in HEAD/crypto/evp/p_lib.c.

上级 90e1b1fd
...@@ -161,13 +161,13 @@ int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b) ...@@ -161,13 +161,13 @@ int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
if (a->type != b->type) if (a->type != b->type)
return -1; return -1;
if (a->meth) if (a->ameth)
{ {
int ret; int ret;
/* Compare parameters if the algorithm has them */ /* 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) if (ret <= 0)
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册