1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-24 15:38:11 +00:00

Fix default-mask mode

This commit is contained in:
jsteube 2016-10-04 23:09:12 +02:00
parent b55cdeded8
commit dab40d2dd5

View File

@ -1026,15 +1026,15 @@ void user_options_preprocess (user_options_t *user_options)
if (user_options->attack_mode == ATTACK_MODE_BF)
{
if (user_options->benchmark == false)
if (user_options->benchmark == true)
{
}
else if (user_options->opencl_info == false)
else if (user_options->opencl_info == true)
{
}
else if (user_options->keyspace == false)
else if (user_options->keyspace == true)
{
if (user_options->hc_argc == 0)
{
@ -1045,7 +1045,7 @@ void user_options_preprocess (user_options_t *user_options)
user_options->increment = true;
}
}
else if (user_options->stdout_flag == false)
else if (user_options->stdout_flag == true)
{
if (user_options->hc_argc == 0)
{