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

pull/556/head
jsteube 8 years ago
parent d7c019b583
commit 7147d659f9

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

Loading…
Cancel
Save