1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 07:08:19 +00:00

Fix some maximum password length handling with --length-limit-disable feature

This commit is contained in:
jsteube 2017-06-30 17:28:19 +02:00
parent 7914e075f6
commit c3f374c733

View File

@ -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;
}