Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2015-02-13 21:47:56 +0300
committerAdam Langley <agl@google.com>2015-02-21 02:33:55 +0300
commit93531bd70f48bc63ad7d4aedf32d69c8095170bd (patch)
treee73db7eefb6c344061c7b956d38567e832fdd19e /crypto/ec/ec.c
parentd3a73360fa9021b1b906f4cf02849061a7f8b286 (diff)
Add the CTX parameter back to EC_GROUP_cmp.
It was a mistake to remove this in the first place. Change-Id: Icd97b4db01e49151daa41dd892f9da573ddc2842 Reviewed-on: https://boringssl-review.googlesource.com/3541 Reviewed-by: David Benjamin <davidben@chromium.org> Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/ec/ec.c')
-rw-r--r--crypto/ec/ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ec.c b/crypto/ec/ec.c
index 30f93461..21a39405 100644
--- a/crypto/ec/ec.c
+++ b/crypto/ec/ec.c
@@ -499,7 +499,7 @@ err:
}
}
-int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b) {
+int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ignored) {
if (a->curve_name == NID_undef || b->curve_name == NID_undef) {
return 0;
}