From 38c44b4b35f27f94fb8baebb763e4840747d54f1 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Sat, 7 May 2022 19:40:54 +0200 Subject: [PATCH] Fix user option sanity check --- src/user_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user_options.c b/src/user_options.c index 47f354e50..56e545c69 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -717,7 +717,7 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) return -1; } - if (user_options->runtime_chgd == true && user_options->loopback == true) + if (user_options->limit_chgd == true && user_options->loopback == true) { event_log_error (hashcat_ctx, "Combining --limit with --loopback is not allowed.");