projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90e1b1f
)
Typos(?) in HEAD/crypto/evp/p_lib.c.
author
Andy Polyakov
<appro@openssl.org>
Tue, 4 Jul 2006 20:27:44 +0000
(20:27 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Tue, 4 Jul 2006 20:27:44 +0000
(20:27 +0000)
crypto/evp/p_lib.c
patch
|
blob
|
history
diff --git
a/crypto/evp/p_lib.c
b/crypto/evp/p_lib.c
index 6715c154b29c99252e2fddae350e4ad7d39576b5..249ac2bd2a08e1d7fcbc7681ea85b8ae579e4005 100644
(file)
--- 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->
a
meth)
{
int ret;
/* Compare parameters if the algorithm has them */
- if (a->meth->param_cmp)
+ if (a->
a
meth->param_cmp)
{
- ret = a->meth->param_cmp(a, b);
+ ret = a->
a
meth->param_cmp(a, b);
if (ret <= 0)
return ret;
}