summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/crypto/ui/ui_openssl.c
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2014-04-27 20:26:46 +0000
committermiod <miod@openbsd.org>2014-04-27 20:26:46 +0000
commite402ce74af92e11cf51406acbd53f28852df7c32 (patch)
tree060921ecfca28854f412a301d88d7bf299dd30ec /lib/libssl/src/crypto/ui/ui_openssl.c
parentstatic const char * = "" -> static const char[] = "", to produce shorter code. (diff)
downloadwireguard-openbsd-e402ce74af92e11cf51406acbd53f28852df7c32.tar.xz
wireguard-openbsd-e402ce74af92e11cf51406acbd53f28852df7c32.zip
Use C99 initializers for the various FOO_METHOD structs. More readable, and
avoid unreadable/unmaintainable constructs like that: const EVP_PKEY_ASN1_METHOD cmac_asn1_meth = { EVP_PKEY_CMAC, EVP_PKEY_CMAC, 0, "CMAC", "OpenSSL CMAC method", 0,0,0,0, 0,0,0, cmac_size, 0, 0,0,0,0,0,0,0, cmac_key_free, 0, 0,0 }; ok matthew@ deraadt@
Diffstat (limited to 'lib/libssl/src/crypto/ui/ui_openssl.c')
-rw-r--r--lib/libssl/src/crypto/ui/ui_openssl.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/libssl/src/crypto/ui/ui_openssl.c b/lib/libssl/src/crypto/ui/ui_openssl.c
index d3be332f19e..3b79ecaf029 100644
--- a/lib/libssl/src/crypto/ui/ui_openssl.c
+++ b/lib/libssl/src/crypto/ui/ui_openssl.c
@@ -157,13 +157,11 @@ static int noecho_console(UI *ui);
static int close_console(UI *ui);
static UI_METHOD ui_openssl = {
- "OpenSSL default user interface",
- open_console,
- write_string,
- NULL, /* No flusher is needed for command lines */
- read_string,
- close_console,
- NULL
+ .name = "OpenSSL default user interface",
+ .ui_open_session = open_console,
+ .ui_write_string = write_string,
+ .ui_read_string = read_string,
+ .ui_close_session = close_console,
};
/* The method with all the built-in thingies */