From 905bc6f9e9764ebb5e0975566f211864595991b0 Mon Sep 17 00:00:00 2001 From: tb Date: Thu, 8 Aug 2024 09:56:51 +0000 Subject: [PATCH] ui_util.c needs stdio.h and ui.h, but not ui_compat.h and ui_local.h --- lib/libcrypto/ui/ui_util.c | 7 +++---- 1 file 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 #include -#include - -#include "ui_local.h" +#include int UI_UTIL_read_pw_string(char *buf, int length, const char *prompt, int verify) -- 2.20.1