summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bf_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bio/bf_null.c')
-rw-r--r--src/lib/libcrypto/bio/bf_null.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libcrypto/bio/bf_null.c b/src/lib/libcrypto/bio/bf_null.c
index 3bba2afe98..7554ed9cf5 100644
--- a/src/lib/libcrypto/bio/bf_null.c
+++ b/src/lib/libcrypto/bio/bf_null.c
@@ -74,16 +74,16 @@ static int nullf_free(BIO *data);
74static long nullf_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp); 74static long nullf_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
75 75
76static BIO_METHOD methods_nullf = { 76static BIO_METHOD methods_nullf = {
77 BIO_TYPE_NULL_FILTER, 77 .type = BIO_TYPE_NULL_FILTER,
78 "NULL filter", 78 .name = "NULL filter",
79 nullf_write, 79 .bwrite = nullf_write,
80 nullf_read, 80 .bread = nullf_read,
81 nullf_puts, 81 .bputs = nullf_puts,
82 nullf_gets, 82 .bgets = nullf_gets,
83 nullf_ctrl, 83 .ctrl = nullf_ctrl,
84 nullf_new, 84 .create = nullf_new,
85 nullf_free, 85 .destroy = nullf_free,
86 nullf_callback_ctrl, 86 .callback_ctrl = nullf_callback_ctrl
87}; 87};
88 88
89BIO_METHOD * 89BIO_METHOD *