diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bf_nbio.c')
-rw-r--r-- | src/lib/libcrypto/bio/bf_nbio.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libcrypto/bio/bf_nbio.c b/src/lib/libcrypto/bio/bf_nbio.c index 048e6892cc..5a0f6b276a 100644 --- a/src/lib/libcrypto/bio/bf_nbio.c +++ b/src/lib/libcrypto/bio/bf_nbio.c | |||
@@ -81,16 +81,16 @@ typedef struct nbio_test_st { | |||
81 | } NBIO_TEST; | 81 | } NBIO_TEST; |
82 | 82 | ||
83 | static BIO_METHOD methods_nbiof = { | 83 | static BIO_METHOD methods_nbiof = { |
84 | BIO_TYPE_NBIO_TEST, | 84 | .type = BIO_TYPE_NBIO_TEST, |
85 | "non-blocking IO test filter", | 85 | .name = "non-blocking IO test filter", |
86 | nbiof_write, | 86 | .bwrite = nbiof_write, |
87 | nbiof_read, | 87 | .bread = nbiof_read, |
88 | nbiof_puts, | 88 | .bputs = nbiof_puts, |
89 | nbiof_gets, | 89 | .bgets = nbiof_gets, |
90 | nbiof_ctrl, | 90 | .ctrl = nbiof_ctrl, |
91 | nbiof_new, | 91 | .create = nbiof_new, |
92 | nbiof_free, | 92 | .destroy = nbiof_free, |
93 | nbiof_callback_ctrl, | 93 | .callback_ctrl = nbiof_callback_ctrl |
94 | }; | 94 | }; |
95 | 95 | ||
96 | BIO_METHOD * | 96 | BIO_METHOD * |