From cb78b910d38de91885518d47ff784fe03956a0a6 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sun, 2 Oct 2016 23:38:17 +0200 Subject: [PATCH] Fix default mask usage --- 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 9f0aa8679..292ce084a 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -843,7 +843,7 @@ int user_options_sanity (const user_options_t *user_options) } else if (user_options->attack_mode == ATTACK_MODE_BF) { - if (user_options->hc_argc >= 2) + if (user_options->hc_argc >= 1) { show_error = false; }