summaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2015-02-27 13:00:38 -0800
committerKenny Root <kroot@google.com>2015-02-27 13:00:40 -0800
commitc897c7e9b822ebe6bc75a0d152bd01d9828d24ee (patch)
tree177434e2441a4cc12d7b9cc24361282a15da196d /src/crypto
parent7a2c703250e0a9a552d0214a34d116ef2f90af82 (diff)
downloadexternal_boringssl-c897c7e9b822ebe6bc75a0d152bd01d9828d24ee.zip
external_boringssl-c897c7e9b822ebe6bc75a0d152bd01d9828d24ee.tar.gz
external_boringssl-c897c7e9b822ebe6bc75a0d152bd01d9828d24ee.tar.bz2
EC_GROUP_cmp: add back the ignored BN_CTX arg
Change-Id: If7c25984fadcb98ea9fb26983e04b1be3b6a2ecd
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/ec/ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/ec/ec.c b/src/crypto/ec/ec.c
index 15e5735..30def15 100644
--- a/src/crypto/ec/ec.c
+++ b/src/crypto/ec/ec.c
@@ -491,7 +491,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) {
return a->curve_name == NID_undef ||
b->curve_name == NID_undef ||
a->curve_name != b->curve_name;