summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-08-08 09:56:52 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-08-08 09:56:52 +0000
commit36b0b48d4e87f82391e4cfc3176ef16105cd1e21 (patch)
treeb2f4cc379e98eb092a171f91c0766af47b815811 /lib
parentfe5292af13f7675b2ed2af112b2eaa81b15b62c4 (diff)
ui_util.c needs stdio.h and ui.h, but not ui_compat.h and ui_local.h
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/ui/ui_util.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libcrypto/ui/ui_util.c b/lib/libcrypto/ui/ui_util.c
index 4fa4058cd46..e1dda00427c 100644
--- a/lib/libcrypto/ui/ui_util.c
+++ b/lib/libcrypto/ui/ui_util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ui_util.c,v 1.14 2023/02/16 08:38:17 tb Exp $ */
+/* $OpenBSD: ui_util.c,v 1.15 2024/08/08 09:56:51 tb Exp $ */
/* ====================================================================
* Copyright (c) 2001-2002 The OpenSSL Project. All rights reserved.
*
@@ -53,11 +53,10 @@
*
*/
+#include <stdio.h>
#include <string.h>
-#include <openssl/ui_compat.h>
-
-#include "ui_local.h"
+#include <openssl/ui.h>
int
UI_UTIL_read_pw_string(char *buf, int length, const char *prompt, int verify)