summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bss_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bio/bss_null.c')
-rw-r--r--src/lib/libcrypto/bio/bss_null.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/lib/libcrypto/bio/bss_null.c b/src/lib/libcrypto/bio/bss_null.c
index c7289725d9..a5796ea87a 100644
--- a/src/lib/libcrypto/bio/bss_null.c
+++ b/src/lib/libcrypto/bio/bss_null.c
@@ -70,16 +70,15 @@ static int null_new(BIO *h);
70static int null_free(BIO *data); 70static int null_free(BIO *data);
71 71
72static BIO_METHOD null_method = { 72static BIO_METHOD null_method = {
73 BIO_TYPE_NULL, 73 .type = BIO_TYPE_NULL,
74 "NULL", 74 .name = "NULL",
75 null_write, 75 .bwrite = null_write,
76 null_read, 76 .bread = null_read,
77 null_puts, 77 .bputs = null_puts,
78 null_gets, 78 .bgets = null_gets,
79 null_ctrl, 79 .ctrl = null_ctrl,
80 null_new, 80 .create = null_new,
81 null_free, 81 .destroy = null_free
82 NULL,
83}; 82};
84 83
85BIO_METHOD * 84BIO_METHOD *