diff options
Diffstat (limited to 'src/lib/libcrypto/evp/bio_enc.c')
-rw-r--r-- | src/lib/libcrypto/evp/bio_enc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/evp/bio_enc.c b/src/lib/libcrypto/evp/bio_enc.c index 6ab07e13d9..2a0f76fcbe 100644 --- a/src/lib/libcrypto/evp/bio_enc.c +++ b/src/lib/libcrypto/evp/bio_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bio_enc.c,v 1.25 2022/01/07 09:02:18 tb Exp $ */ | 1 | /* $OpenBSD: bio_enc.c,v 1.26 2022/01/14 08:40:57 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -73,7 +73,7 @@ static int enc_read(BIO *h, char *buf, int size); | |||
73 | static long enc_ctrl(BIO *h, int cmd, long arg1, void *arg2); | 73 | static long enc_ctrl(BIO *h, int cmd, long arg1, void *arg2); |
74 | static int enc_new(BIO *h); | 74 | static int enc_new(BIO *h); |
75 | static int enc_free(BIO *data); | 75 | static int enc_free(BIO *data); |
76 | static long enc_callback_ctrl(BIO *h, int cmd, bio_info_cb *fps); | 76 | static long enc_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fps); |
77 | #define ENC_BLOCK_SIZE (1024*4) | 77 | #define ENC_BLOCK_SIZE (1024*4) |
78 | #define BUF_OFFSET (EVP_MAX_BLOCK_LENGTH*2) | 78 | #define BUF_OFFSET (EVP_MAX_BLOCK_LENGTH*2) |
79 | 79 | ||
@@ -373,7 +373,7 @@ again: | |||
373 | } | 373 | } |
374 | 374 | ||
375 | static long | 375 | static long |
376 | enc_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) | 376 | enc_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) |
377 | { | 377 | { |
378 | long ret = 1; | 378 | long ret = 1; |
379 | 379 | ||