From a4555fdcb9d00fe7468ad981c960cf3ffad1f0f2 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Thu, 23 Mar 2023 19:38:17 -0500 Subject: [PATCH] Fix typo 2 --- src/user_options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/user_options.c b/src/user_options.c index 0b3b6935b..a4fe5f760 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -1000,14 +1000,14 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) } } - if (user_options->show == true) && (user_options->username == true) + if ((user_options->show == true) && (user_options->username == true)) { event_log_advice (hashcat_ctx, "Mixing --show with --username can cause exponential delay in output."); return 0; } - if ((user_options->show == true || user_options->left == true)) + if (user_options->show == true || user_options->left == true) { if (user_options->remove == true) {