Commit fc237de7 authored by Matt Caswell's avatar Matt Caswell
Browse files

Remove some #if 0'd out code



It was only a sanity check anyway, so isn't needed

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent 0abcaddf
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -58,12 +58,6 @@ struct PacketedBio {
};

PacketedBio *GetData(BIO *bio) {
#if 0
  /* Missing accessor BIO_get_method()?? Disabled for now */
  if (bio->method != &g_packeted_bio_method) {
    return NULL;
  }
#endif
  return (PacketedBio *)BIO_get_data(bio);
}