From c3f374c7331223d44c1df68c4c3b2d64504cc8e3 Mon Sep 17 00:00:00 2001 From: jsteube Date: Fri, 30 Jun 2017 17:28:19 +0200 Subject: [PATCH] Fix some maximum password length handling with --length-limit-disable feature --- src/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.c b/src/interface.c index 68990152c..274ad8708 100644 --- a/src/interface.c +++ b/src/interface.c @@ -24535,7 +24535,7 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx) // pw_max - if (user_options->length_limit_disable == false) + if (user_options->length_limit_disable == true) { hashconfig->pw_max = PW_MAX; }