From 702306dfd5e2072985e2c9718cc8f65ce532a4b0 Mon Sep 17 00:00:00 2001 From: jsteube Date: Mon, 13 Nov 2023 08:48:11 +0000 Subject: [PATCH] If --dynamic-x is used, potfile database needs to keep all hashes --- src/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.c b/src/interface.c index 595fe1821..691e2931b 100644 --- a/src/interface.c +++ b/src/interface.c @@ -688,7 +688,7 @@ bool default_potfile_keep_all_hashes (MAYBE_UNUSED const hashconfig_t *hashconfi // keep all hashes if --username was combined with --left or --show - if (user_options->username == true) + if ((user_options->username == true) || (user_options->dynamic_x == true)) { if ((user_options->show == true) || (user_options->left == true)) {