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:
af1048c
)
Fix typo
author
Bodo Möller
<bodo@openssl.org>
Wed, 9 Mar 2005 19:08:02 +0000
(19:08 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Wed, 9 Mar 2005 19:08:02 +0000
(19:08 +0000)
PR: 1017
Submitted by: ciresh@yahoo.com
Reviewed by: Nils Larsch
crypto/ec/ec_lib.c
patch
|
blob
|
history
diff --git
a/crypto/ec/ec_lib.c
b/crypto/ec/ec_lib.c
index ba5b821c9c88955895e24689ca41ff199360a54a..6abda2d4484ddde7d67e250933c3ae8301a42146 100644
(file)
--- a/
crypto/ec/ec_lib.c
+++ b/
crypto/ec/ec_lib.c
@@
-512,7
+512,7
@@
int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
!b->meth->group_get_curve(b, b1, b2, b3, ctx))
r = 1;
- if (r || BN_cmp(a1, b
2
) || BN_cmp(a2, b2) || BN_cmp(a3, b3))
+ if (r || BN_cmp(a1, b
1
) || BN_cmp(a2, b2) || BN_cmp(a3, b3))
r = 1;
/* XXX EC_POINT_cmp() assumes that the methods are equal */