From 7147d659f93f177b8206e611f4927c3a452fc802 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 29 Oct 2016 23:18:15 +0200 Subject: [PATCH] Fix input-base and input-mod ordering for status screen --- src/status.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/status.c b/src/status.c index b0d4ad177..c04d7fc68 100644 --- a/src/status.c +++ b/src/status.c @@ -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; }