diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bf_lbuf.c')
| -rw-r--r-- | src/lib/libcrypto/bio/bf_lbuf.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libcrypto/bio/bf_lbuf.c b/src/lib/libcrypto/bio/bf_lbuf.c index f0bd0d709e..54c370d038 100644 --- a/src/lib/libcrypto/bio/bf_lbuf.c +++ b/src/lib/libcrypto/bio/bf_lbuf.c | |||
| @@ -77,16 +77,16 @@ static long linebuffer_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp); | |||
| 77 | /* #define DEBUG */ | 77 | /* #define DEBUG */ |
| 78 | 78 | ||
| 79 | static BIO_METHOD methods_linebuffer = { | 79 | static BIO_METHOD methods_linebuffer = { |
| 80 | BIO_TYPE_LINEBUFFER, | 80 | .type = BIO_TYPE_LINEBUFFER, |
| 81 | "linebuffer", | 81 | .name = "linebuffer", |
| 82 | linebuffer_write, | 82 | .bwrite = linebuffer_write, |
| 83 | linebuffer_read, | 83 | .bread = linebuffer_read, |
| 84 | linebuffer_puts, | 84 | .bputs = linebuffer_puts, |
| 85 | linebuffer_gets, | 85 | .bgets = linebuffer_gets, |
| 86 | linebuffer_ctrl, | 86 | .ctrl = linebuffer_ctrl, |
| 87 | linebuffer_new, | 87 | .create = linebuffer_new, |
| 88 | linebuffer_free, | 88 | .destroy = linebuffer_free, |
| 89 | linebuffer_callback_ctrl, | 89 | .callback_ctrl = linebuffer_callback_ctrl |
| 90 | }; | 90 | }; |
| 91 | 91 | ||
| 92 | BIO_METHOD * | 92 | BIO_METHOD * |
