diff options
author | 2018-05-19 11:03:33 +0000 | |
---|---|---|
committer | 2018-05-19 11:03:33 +0000 | |
commit | b6108fcec243264a590ea20ca9848e88793e14ab (patch) | |
tree | 8717405dcb2f6e22a0a7aef36bacdf68d44d9956 /lib/libcrypto/ui/ui_lib.c | |
parent | Add const to the obj argument of X509_NAME_add_entry_by_OBJ() (diff) | |
download | wireguard-openbsd-b6108fcec243264a590ea20ca9848e88793e14ab.tar.xz wireguard-openbsd-b6108fcec243264a590ea20ca9848e88793e14ab.zip |
UI_METHOD *UI_create_method(const char *name).
^^^^^
tested in a bulk build by sthen
ok jsing
Diffstat (limited to 'lib/libcrypto/ui/ui_lib.c')
-rw-r--r-- | lib/libcrypto/ui/ui_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/ui/ui_lib.c b/lib/libcrypto/ui/ui_lib.c index e5510307294..8ad55802619 100644 --- a/lib/libcrypto/ui/ui_lib.c +++ b/lib/libcrypto/ui/ui_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ui_lib.c,v 1.32 2017/01/29 17:49:23 beck Exp $ */ +/* $OpenBSD: ui_lib.c,v 1.33 2018/05/19 11:03:33 tb Exp $ */ /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL * project 2001. */ @@ -582,7 +582,7 @@ UI_set_method(UI *ui, const UI_METHOD *meth) UI_METHOD * -UI_create_method(char *name) +UI_create_method(const char *name) { UI_METHOD *ui_method = calloc(1, sizeof(UI_METHOD)); |