diff options
author | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2017-12-15 19:33:48 +0100 |
---|---|---|
committer | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2017-12-15 19:33:48 +0100 |
commit | fce78bd4ede74d4fa7bd1c8195d8f7bc9403bd4c (patch) | |
tree | 47178f4d920c5fc4af3c91ee8c20ec6b8312cf96 /include/internal | |
parent | Remove test-runs dir, adjust .gitignore (diff) | |
download | openssl-fce78bd4ede74d4fa7bd1c8195d8f7bc9403bd4c.tar.xz openssl-fce78bd4ede74d4fa7bd1c8195d8f7bc9403bd4c.zip |
Fix invalid function type casts.
Rename bio_info_cb to BIO_info_cb.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4493)
Diffstat (limited to 'include/internal')
-rw-r--r-- | include/internal/bio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/bio.h b/include/internal/bio.h index f02d74115f..4428947f2d 100644 --- a/include/internal/bio.h +++ b/include/internal/bio.h @@ -21,7 +21,7 @@ struct bio_method_st { long (*ctrl) (BIO *, int, long, void *); int (*create) (BIO *); int (*destroy) (BIO *); - long (*callback_ctrl) (BIO *, int, bio_info_cb *); + long (*callback_ctrl) (BIO *, int, BIO_info_cb *); }; void bio_free_ex_data(BIO *bio); |