1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-23 08:38:09 +00:00

Fix input-base and input-mod ordering for status screen

This commit is contained in:
jsteube 2016-10-29 23:18:15 +02:00
parent d7c019b583
commit 7147d659f9

View File

@ -427,7 +427,7 @@ char *status_get_input_base (const hashcat_ctx_t *hashcat_ctx)
{
const combinator_ctx_t *combinator_ctx = hashcat_ctx->combinator_ctx;
if (combinator_ctx->combs_mode == INPUT_MODE_COMBINATOR_BASE_LEFT)
if (combinator_ctx->combs_mode == COMBINATOR_MODE_BASE_LEFT)
{
return combinator_ctx->dict1;
}
@ -470,7 +470,7 @@ char *status_get_input_mod (const hashcat_ctx_t *hashcat_ctx)
{
const combinator_ctx_t *combinator_ctx = hashcat_ctx->combinator_ctx;
if (combinator_ctx->combs_mode == INPUT_MODE_COMBINATOR_BASE_LEFT)
if (combinator_ctx->combs_mode == COMBINATOR_MODE_BASE_LEFT)
{
return combinator_ctx->dict2;
}