summaryrefslogtreecommitdiff
path: root/verity
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-09-30 15:03:46 -0700
committerAdam Langley <agl@google.com>2015-09-30 15:05:14 -0700
commit532f28f1bae5cbdbbd28148c8c1d33ed6a996b39 (patch)
tree7304194ae11b4411414239644e919ecae38f0470 /verity
parent482fe9e37737e5d6c7d0a4e0fe303e7d097971aa (diff)
downloadextras-532f28f1bae5cbdbbd28148c8c1d33ed6a996b39.tar.gz
system/extras: remove BORINGSSL_201509 support.
The BORINGSSL_201509 define was used to make updating BoringSSL in external/boringssl less painful. It allowed code to compile with either the old BoringSSL (which didn't define BORINGSSL_201509) or with the new (which does). Now that the new version has landed, this change removes that support. Change-Id: I19e661419f830459d015bf14e7905af2ec41b735
Diffstat (limited to 'verity')
-rw-r--r--verity/verify_boot_signature.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/verity/verify_boot_signature.c b/verity/verify_boot_signature.c
index fada61d0..b706e3ad 100644
--- a/verity/verify_boot_signature.c
+++ b/verity/verify_boot_signature.c
@@ -72,14 +72,6 @@ IMPLEMENT_ASN1_FUNCTIONS(BootSignature)
static BIO *g_error = NULL;
-#if defined(OPENSSL_IS_BORINGSSL) && !defined(BORINGSSL_201509)
-/* In BoringSSL, ERR_print_errors has been moved to the BIO functions in order
- * to avoid the incorrect dependency of ERR on BIO. */
-static void ERR_print_errors(BIO *bio) {
- BIO_print_errors(bio);
-}
-#endif
-
/**
* Rounds n up to the nearest multiple of page_size
* @param n The value to round