From 7c4f9497d0086c92baff3d36adf5dcd246c92678 Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 5 Jan 2024 10:15:36 +0000 Subject: [PATCH] Minor tweaks in EVP_read_pw_string_min() Remove unnecessary parentheses and use a better place to break an overlong line. --- lib/libcrypto/evp/evp_key.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libcrypto/evp/evp_key.c b/lib/libcrypto/evp/evp_key.c index 16c002fe677..d6ce373735a 100644 --- a/lib/libcrypto/evp/evp_key.c +++ b/lib/libcrypto/evp/evp_key.c @@ -1,4 +1,4 @@ -/* $OpenBSD: evp_key.c,v 1.31 2024/01/05 10:14:08 tb Exp $ */ +/* $OpenBSD: evp_key.c,v 1.32 2024/01/05 10:15:36 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -109,7 +109,7 @@ EVP_read_pw_string_min(char *buf, int min, int len, const char *prompt, if (min < 0 || len - 1 < min) goto err; - if ((prompt == NULL) && (prompt_string[0] != '\0')) + if (prompt == NULL && prompt_string[0] != '\0') prompt = prompt_string; if ((ui = UI_new()) == NULL) @@ -117,8 +117,8 @@ EVP_read_pw_string_min(char *buf, int min, int len, const char *prompt, if (UI_add_input_string(ui, prompt, 0, buf, min, len - 1) < 0) goto err; if (verify) { - if (UI_add_verify_string(ui, prompt, 0, buff, min, len - 1, buf) - < 0) + if (UI_add_verify_string(ui, prompt, 0, buff, min, len - 1, + buf) < 0) goto err; } -- 2.20.1