X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fbio_enc.c;h=30f09e6d5fdc559a98fcffde4935fdddf256923b;hp=366e2e928b51e62058432bfe0bc2e347112ff633;hb=fce78bd4ede74d4fa7bd1c8195d8f7bc9403bd4c;hpb=27ab91951c96364351f1ea0652dbf14622440345 diff --git a/crypto/evp/bio_enc.c b/crypto/evp/bio_enc.c index 366e2e928b..30f09e6d5f 100644 --- a/crypto/evp/bio_enc.c +++ b/crypto/evp/bio_enc.c @@ -19,7 +19,7 @@ static int enc_read(BIO *h, char *buf, int size); static long enc_ctrl(BIO *h, int cmd, long arg1, void *arg2); static int enc_new(BIO *h); static int enc_free(BIO *data); -static long enc_callback_ctrl(BIO *h, int cmd, bio_info_cb *fps); +static long enc_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fps); #define ENC_BLOCK_SIZE (1024*4) #define ENC_MIN_CHUNK (256) #define BUF_OFFSET (ENC_MIN_CHUNK + EVP_MAX_BLOCK_LENGTH) @@ -385,7 +385,7 @@ static long enc_ctrl(BIO *b, int cmd, long num, void *ptr) return ret; } -static long enc_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) +static long enc_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) { long ret = 1; BIO *next = BIO_next(b);