summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/bio/bio.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bio/bio.h b/src/lib/libcrypto/bio/bio.h
index 0a729bded9..5030a2c2d2 100644
--- a/src/lib/libcrypto/bio/bio.h
+++ b/src/lib/libcrypto/bio/bio.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bio.h,v 1.55 2022/07/12 14:42:48 kn Exp $ */ 1/* $OpenBSD: bio.h,v 1.56 2022/09/11 17:26:03 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 *
@@ -276,8 +276,9 @@ void BIO_set_callback_arg(BIO *b, char *arg);
276const char *BIO_method_name(const BIO *b); 276const char *BIO_method_name(const BIO *b);
277int BIO_method_type(const BIO *b); 277int BIO_method_type(const BIO *b);
278 278
279typedef void bio_info_cb(struct bio_st *, int, const char *, int, long, long);
280typedef int BIO_info_cb(BIO *, int, int); 279typedef int BIO_info_cb(BIO *, int, int);
280/* Compatibility with OpenSSL's backward compatibility. */
281typedef BIO_info_cb bio_info_cb;
281 282
282typedef struct bio_method_st BIO_METHOD; 283typedef struct bio_method_st BIO_METHOD;
283 284