summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-20 13:48:31 +0100
committerMatt Caswell <matt@openssl.org>2016-10-28 09:48:54 +0100
commit98e553d2ce31e2179be68d6a60b5bec765cd9768 (patch)
tree631756cd621310a90c23d2984dd4b85e380cf424 /include
parent3befffa39dbaf2688d823fcf2bdfc07d2487be48 (diff)
Ensure all BIO functions call the new style callback
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/bio.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/openssl/bio.h b/include/openssl/bio.h
index d04946cfa5..301e01aa69 100644
--- a/include/openssl/bio.h
+++ b/include/openssl/bio.h
@@ -241,8 +241,7 @@ typedef long (*BIO_callback_fn)(BIO *b, int oper, const char *argp, int argi,
long argl, long ret);
typedef long (*BIO_callback_fn_ex)(BIO *b, int oper, const char *argp,
size_t len, int argi,
- long argl, int ret, size_t *processed,
- long *lret);
+ long argl, int ret, size_t *processed);
BIO_callback_fn BIO_get_callback(const BIO *b);
void BIO_set_callback(BIO *b, BIO_callback_fn callback);