Skip to content

Commit

Permalink
Fix BIO_meth_get_ctrl arguments swapped with return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Geod24 committed May 23, 2022
1 parent f85bedc commit a359cdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/deimos/openssl/bio.d
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ int BIO_meth_set_puts(BIO_METHOD *biom,
int function(BIO_METHOD *biom) BIO_meth_get_gets(BIO *, char *, int);
int BIO_meth_set_gets(BIO_METHOD *biom,
int function(BIO *, char *, int) gets);
c_long function(BIO_METHOD *biom) BIO_meth_get_ctrl(BIO *, int, c_long, void *);
c_long function(BIO *, int, c_long, void *) BIO_meth_get_ctrl(BIO_METHOD *biom);
int BIO_meth_set_ctrl(BIO_METHOD *biom,
c_long function(BIO *, int, c_long, void *) ctrl);
int function(BIO_METHOD *bion) BIO_meth_get_create(BIO *);
Expand Down

0 comments on commit a359cdc

Please sign in to comment.