X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=crypto%2Fevp%2Fbio_ok.c;h=47228465c5c3b2918c9baced5bdad682c004c17e;hb=52df25cf2e656146cb3b206d8220124f0417d03f;hp=33066e8d83197ddf109c2f826695d4583e574c96;hpb=aa6bb1352b1026b20a23b49da4efdcf171926eb0;p=oweals%2Fopenssl.git diff --git a/crypto/evp/bio_ok.c b/crypto/evp/bio_ok.c index 33066e8d83..47228465c5 100644 --- a/crypto/evp/bio_ok.c +++ b/crypto/evp/bio_ok.c @@ -109,7 +109,11 @@ typedef struct ok_struct { static const BIO_METHOD methods_ok = { BIO_TYPE_CIPHER, "reliable", + /* TODO: Convert to new style write function */ + bwrite_conv, ok_write, + /* TODO: Convert to new style read function */ + bread_conv, ok_read, NULL, /* ok_puts, */ NULL, /* ok_gets, */ @@ -402,7 +406,7 @@ static long ok_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) { long ret = 1; BIO *next; - + next = BIO_next(b); if (next == NULL)