summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bss_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bio/bss_log.c')
-rw-r--r--src/lib/libcrypto/bio/bss_log.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/lib/libcrypto/bio/bss_log.c b/src/lib/libcrypto/bio/bss_log.c
index 6aa2d8b0a4..ac1cbc5087 100644
--- a/src/lib/libcrypto/bio/bss_log.c
+++ b/src/lib/libcrypto/bio/bss_log.c
@@ -86,15 +86,13 @@ static void xsyslog(BIO* bp, int priority, const char* string);
86static void xcloselog(BIO* bp); 86static void xcloselog(BIO* bp);
87 87
88static BIO_METHOD methods_slg = { 88static BIO_METHOD methods_slg = {
89 BIO_TYPE_MEM, "syslog", 89 .type = BIO_TYPE_MEM,
90 slg_write, 90 .name = "syslog",
91 NULL, 91 .bwrite = slg_write,
92 slg_puts, 92 .bputs = slg_puts,
93 NULL, 93 .ctrl = slg_ctrl,
94 slg_ctrl, 94 .create = slg_new,
95 slg_new, 95 .destroy = slg_free
96 slg_free,
97 NULL,
98}; 96};
99 97
100BIO_METHOD * 98BIO_METHOD *