Commit 2fd0dfd9 authored by Matt Caswell's avatar Matt Caswell
Browse files

Remove some #if 0'd out code



It was just a sanity check and isn't needed

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent da88e88a
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -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);
}