Remove some #if 0'd out code
authorMatt Caswell <matt@openssl.org>
Wed, 19 Oct 2016 09:52:47 +0000 (10:52 +0100)
committerMatt Caswell <matt@openssl.org>
Fri, 4 Nov 2016 10:38:54 +0000 (10:38 +0000)
It was just a sanity check and isn't needed

Reviewed-by: Richard Levitte <levitte@openssl.org>
test/ossl_shim/async_bio.cc

index b905a0e697927c5597540a1106bf6c8af3bf069e..03d9ed429c8079c2e2e94bdc6f6efa59273221fd 100644 (file)
@@ -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);
 }