summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2018-05-19 11:03:34 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2018-05-19 11:03:34 +0000
commit76268d2a6d587d7813b3260abb25aa6662ddd9ff (patch)
treea6771f79b414aaddb27e29bbc6b2dd7a41432e39 /lib
parentd8f5ae8ba55196505806989c8da9eace193806a3 (diff)
UI_METHOD *UI_create_method(const char *name).
^^^^^ tested in a bulk build by sthen ok jsing
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/ui/ui.h4
-rw-r--r--lib/libcrypto/ui/ui_lib.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/ui/ui.h b/lib/libcrypto/ui/ui.h
index b6b0075e4d6..8ae0dd5e752 100644
--- a/lib/libcrypto/ui/ui.h
+++ b/lib/libcrypto/ui/ui.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ui.h,v 1.9 2014/07/10 22:45:58 jsing Exp $ */
+/* $OpenBSD: ui.h,v 1.10 2018/05/19 11:03:33 tb Exp $ */
/* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
* project 2001.
*/
@@ -304,7 +304,7 @@ enum UI_string_types {
};
/* Create and manipulate methods */
-UI_METHOD *UI_create_method(char *name);
+UI_METHOD *UI_create_method(const char *name);
void UI_destroy_method(UI_METHOD *ui_method);
int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
int UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis));
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));