Skip to content

Commit

Permalink
Correct return type for BIO_ptr_ctrl
Browse files Browse the repository at this point in the history
Fixes #17549
CLA: trivial

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from #17636)

(cherry picked from commit 984cc9a)
  • Loading branch information
Thomas1664 authored and paulidale committed Feb 7, 2022
1 parent 624f858 commit 191c9e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/man3/BIO_ctrl.pod
Expand Up @@ -16,7 +16,7 @@ BIO_get_info_callback, BIO_set_info_callback, BIO_info_cb

long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);
long BIO_callback_ctrl(BIO *b, int cmd, BIO_info_cb *cb);
char *BIO_ptr_ctrl(BIO *bp, int cmd, long larg);
void *BIO_ptr_ctrl(BIO *bp, int cmd, long larg);
long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg);

int BIO_reset(BIO *b);
Expand Down

0 comments on commit 191c9e6

Please sign in to comment.