summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_bio.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-18 12:28:29 +0000
committerBodo Möller <bodo@openssl.org>1999-06-18 12:28:29 +0000
commit2de625408af26ef149ac4ff640e8f06ee416aaf9 (patch)
treea805c2d81e0dc3f59526c0015e578021b667a96e /crypto/bio/bss_bio.c
parent56f74f2ec3a307bbc65a7a7099ea59508755183f (diff)
Use same name in the definition as in the header file declaration :-/
(the extra "get" makes the name quite long, but otherwise it'd sound as if you could request something rather than obtain information about what the peer did).
Diffstat (limited to 'crypto/bio/bss_bio.c')
-rw-r--r--crypto/bio/bss_bio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_bio.c b/crypto/bio/bss_bio.c
index a1991a7b90..e82b2bc51c 100644
--- a/crypto/bio/bss_bio.c
+++ b/crypto/bio/bss_bio.c
@@ -576,7 +576,7 @@ size_t BIO_ctrl_get_write_guarantee(BIO *bio)
return BIO_ctrl(bio, BIO_C_GET_WRITE_GUARANTEE, 0, NULL);
}
-size_t BIO_ctrl_read_request(BIO *bio)
+size_t BIO_ctrl_get_read_request(BIO *bio)
{
return BIO_ctrl(bio, BIO_C_GET_READ_REQUEST, 0, NULL);
}