summaryrefslogtreecommitdiffstats
path: root/test/ossl_shim
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-19 10:52:47 +0100
committerMatt Caswell <matt@openssl.org>2016-11-04 10:38:54 +0000
commit2fd0dfd9f69468b8276b0cd3a292a9b1aa24fef9 (patch)
tree411a2e31cfa9593e770a4ec659c8bfd16f79600e /test/ossl_shim
parentda88e88a79b4e283328bb09f60b6e0099ae939e9 (diff)
Remove some #if 0'd out code
It was just a sanity check and isn't needed Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/ossl_shim')
-rw-r--r--test/ossl_shim/async_bio.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/ossl_shim/async_bio.cc b/test/ossl_shim/async_bio.cc
index b905a0e697..03d9ed429c 100644
--- a/test/ossl_shim/async_bio.cc
+++ b/test/ossl_shim/async_bio.cc
@@ -31,15 +31,6 @@ struct AsyncBio {
};
AsyncBio *GetData(BIO *bio) {
- /*
- * TODO: Missing accessor? This probably needs a BIO_get_method() in OpenSSL
- * For now skip this check
- */
-#if 0
- if (bio->method != &g_async_bio_method) {
- return NULL;
- }
-#endif
return (AsyncBio *)BIO_get_data(bio);
}